From d42e1b7c1adb6e28a75810e4b5a557745cb1fede Mon Sep 17 00:00:00 2001 From: Chen-I Lim Date: Tue, 26 Jan 2021 11:16:31 -0800 Subject: [PATCH] Default db name --- README.md | 2 +- app-config.json | 2 +- config.json | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f84a33b67..5f9fb00d0 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ The server defaults to using SQLite as the store, but can be configured to use P * In config.json * Set dbtype to "postgres" * Set dbconfig to the connection string (which you can copy from dbconfig_postgres) -* Create a new "octo" database with psql +* Create a new "focalboard" database with psql * Restart the server ## Running and testing the server diff --git a/app-config.json b/app-config.json index eed9d38ae..bbfa0de92 100644 --- a/app-config.json +++ b/app-config.json @@ -2,7 +2,7 @@ "serverRoot": "http://localhost:8088", "port": 8088, "dbtype": "sqlite3", - "dbconfig": "./octo.db", + "dbconfig": "./focalboard.db", "useSSL": false, "webpath": "./pack", "filespath": "./files", diff --git a/config.json b/config.json index 6b4d8fc2e..370b563ed 100644 --- a/config.json +++ b/config.json @@ -2,8 +2,8 @@ "serverRoot": "http://localhost:8000", "port": 8000, "dbtype": "sqlite3", - "dbconfig": "./octo.db", - "postgres_dbconfig": "dbname=octo sslmode=disable", + "dbconfig": "./focalboard.db", + "postgres_dbconfig": "dbname=focalboard sslmode=disable", "test_dbconfig": "file::memory:?cache=shared", "useSSL": false, "webpath": "./webapp/pack",