From 7cf06683f29b5bd725b9ec15e2ffac77e039e51b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 18 May 2020 13:50:25 +0200 Subject: Add port configuration/cli argument Signed-off-by: Matthias Beyer --- src/configuration.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/configuration.rs') diff --git a/src/configuration.rs b/src/configuration.rs index c0d64b5..5b39090 100644 --- a/src/configuration.rs +++ b/src/configuration.rs @@ -15,6 +15,11 @@ pub struct Configuration { /// The Port of the API api_port: u16, + #[serde(rename = "app-port")] + #[get] + /// The Port of the App itself + app_port: u16, + #[serde(rename = "autoserve-chains")] #[get] /// Whether to automatically "ipfs pin" chain objects @@ -84,6 +89,7 @@ impl Default for Configuration { Configuration { api_url : String::from("127.0.0.1"), api_port : 5001, + app_port : 5002, autoserve_chains : true, autoserve_text_posts : true, serve_blocked : false, -- cgit v1.2.3