Default db name

This commit is contained in:
Chen-I Lim 2021-01-26 11:16:31 -08:00
parent 535e313718
commit d42e1b7c1a
3 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -2,7 +2,7 @@
"serverRoot": "http://localhost:8088",
"port": 8088,
"dbtype": "sqlite3",
"dbconfig": "./octo.db",
"dbconfig": "./focalboard.db",
"useSSL": false,
"webpath": "./pack",
"filespath": "./files",

View file

@ -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",