Commit b6ca8966 authored by Jeremy Bokobza's avatar Jeremy Bokobza Committed by GitHub

Merge pull request #105 from bokobza/master

configurable api uri
parents 049e63f6 9d148bb7
......@@ -9,16 +9,16 @@ namespace Breeze.Api
public class Program
{
public static void Main(string[] args)
{
Initialize();
{
}
public static void Initialize(IEnumerable<ServiceDescriptor> services = null, FullNode fullNode = null)
public static void Initialize(IEnumerable<ServiceDescriptor> services, FullNode fullNode)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseUrls(fullNode.Settings.ApiUri.ToString())
.ConfigureServices(collection =>
{
if (services == null || fullNode == null)
......
cd ..
dotnet run light
\ No newline at end of file
cd..
dotnet run -testnet light
\ No newline at end of file
cd..
dotnet run light stratis
\ No newline at end of file
cd..
dotnet run -testnet light stratis addnode=13.64.76.48
\ No newline at end of file
......@@ -24,6 +24,9 @@ namespace Breeze.Daemon
{
public class Program
{
private const string DefaultBitcoinUri = "http://localhost:5000";
private const string DefaultStratisUri = "http://localhost:5105";
public static void Main(string[] args)
{
IFullNodeBuilder fullNodeBuilder = null;
......@@ -31,13 +34,21 @@ namespace Breeze.Daemon
// configure logging
Logs.Configure(Logs.GetLoggerFactory(args));
// get the api uri
var apiUri = args.SingleOrDefault(arg => arg.StartsWith("apiuri"));
if (!string.IsNullOrEmpty(apiUri))
{
apiUri = apiUri.Replace("apiuri=", string.Empty);
}
if (args.Contains("stratis"))
{
if (NodeSettings.PrintHelp(args, Network.StratisMain))
return;
var network = args.Contains("-testnet") ? InitStratisTest() : Network.StratisMain;
var nodeSettings = NodeSettings.FromArguments(args, "stratis", network, ProtocolVersion.ALT_PROTOCOL_VERSION);
var nodeSettings = NodeSettings.FromArguments(args, "stratis", network, ProtocolVersion.ALT_PROTOCOL_VERSION);
nodeSettings.ApiUri = new Uri(string.IsNullOrEmpty(apiUri) ? DefaultStratisUri : apiUri);
if (args.Contains("light"))
{
......@@ -63,6 +74,7 @@ namespace Breeze.Daemon
else
{
NodeSettings nodeSettings = NodeSettings.FromArguments(args);
nodeSettings.ApiUri = new Uri(string.IsNullOrEmpty(apiUri) ? DefaultBitcoinUri : apiUri);
if (args.Contains("light"))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment