mirror of
https://github.com/mattermost/focalboard.git
synced 2024-11-27 08:31:20 +02:00
f1b8d88d6b
* Improving mattermost auth implementation * Making mattermost-auth based on shared database access * Reverting unneeded changes in the config.json file * Fixing tiny problems * Removing the need of using the mattermost session token * Fixing some bugs and allowing to not-bind the server to any port * Small fix to correctly get the templates * Adding the mattermost-plugin code inside focalboard repo * Adding a not working code part of the cluster websocket communication * Updating the mattermost version * Adding the cluster messages for the websockets * Updating to the new node version * Making it compatible with S3 * Addressing some tiny problems * Fixing server tests * Adds support for MySQL migrations and initialization Co-authored-by: Miguel de la Cruz <miguel@mcrx.me>
23 lines
612 B
JSON
23 lines
612 B
JSON
{
|
|
"serverRoot": "http://localhost:8000",
|
|
"port": 8000,
|
|
"dbtype": "sqlite3",
|
|
"dbconfig": "./focalboard.db",
|
|
"dbtableprefix": "",
|
|
"postgres_dbconfig": "dbname=focalboard sslmode=disable",
|
|
"test_dbconfig": "file::memory:?cache=shared",
|
|
"useSSL": false,
|
|
"webpath": "./webapp/pack",
|
|
"filesdriver": "local",
|
|
"filespath": "./files",
|
|
"telemetry": true,
|
|
"prometheus_address": ":9092",
|
|
"webhook_update": [],
|
|
"session_expire_time": 2592000,
|
|
"session_refresh_time": 18000,
|
|
"localOnly": false,
|
|
"enableLocalMode": true,
|
|
"localModeSocketLocation": "/var/tmp/focalboard_local.socket",
|
|
"authMode": "native"
|
|
}
|