summaryrefslogtreecommitdiffstats
path: root/src/configuration.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/configuration.rs')
-rw-r--r--src/configuration.rs6
1 files changed, 6 insertions, 0 deletions
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,