From 8658cb8306468d79d0e6f9e1f188e36cfde4b67f Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Sat, 23 May 2020 10:42:39 +0000 Subject: [PATCH] Add base url to config --- src/config.cr | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config.cr b/src/config.cr index 98d72a5..4753850 100644 --- a/src/config.cr +++ b/src/config.cr @@ -4,6 +4,7 @@ class Config include YAML::Serializable property port : Int32 = 9000 + property base_url : String = "/" property library_path : String = File.expand_path "~/mango/library", home: true property db_path : String = File.expand_path "~/mango/mango.db", home: true