summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/debug.json14
-rw-r--r--config/default.json4
2 files changed, 16 insertions, 2 deletions
diff --git a/config/debug.json b/config/debug.json
new file mode 100644
index 0000000..7d1295b
--- /dev/null
+++ b/config/debug.json
@@ -0,0 +1,14 @@
+{
+ "http":{
+ "bind_host":"127.0.0.1",
+ "bind_port":"8080",
+ "static":"./data/static",
+ "templates":"./data/templates",
+ "storage":"./data/storage"
+ },
+ "database":{
+ "socket":"/run/mysqld/mysqld.sock",
+ "database":"ceres",
+ "migrations":"./sql"
+ }
+}
diff --git a/config/default.json b/config/default.json
index 076d672..7710774 100644
--- a/config/default.json
+++ b/config/default.json
@@ -8,7 +8,7 @@
},
"database":{
"socket":"/run/mysqld/mysqld.sock",
- "user":"ceres",
- "database":"ceres"
+ "database":"ceres",
+ "migrations":"/usr/share/ceres/migrations"
}
}