Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
Find a file
2020-10-19 13:06:04 -07:00
.vscode First commit! 2020-10-08 09:21:27 -07:00
html-templates Using a more standard way to serve static files 2020-10-18 02:46:25 +02:00
server Add scheduler tests 2020-10-19 15:30:15 +02:00
src Fix CSS: .name -> .menu-name 2020-10-19 13:06:04 -07:00
.editorconfig Adding initial coding style checking 2020-10-15 01:02:41 +02:00
.eslintignore First commit! 2020-10-08 09:21:27 -07:00
.eslintrc First commit! 2020-10-08 09:21:27 -07:00
.eslintrc.json Adding initial coding style checking 2020-10-15 01:02:41 +02:00
.gitignore Adding initial coding style checking 2020-10-15 01:02:41 +02:00
.prettierrc.json First commit! 2020-10-08 09:21:27 -07:00
config.json Add initial telemetry code, system_settings table and the task scheduler 2020-10-19 14:55:31 +02:00
Makefile Add code generation task to the make file 2020-10-18 01:17:17 +02:00
package-lock.json Adding initial coding style checking 2020-10-15 01:02:41 +02:00
package.json Adding initial coding style checking 2020-10-15 01:02:41 +02:00
README.md go get dependencies in make prebuild (refactor later) 2020-10-09 10:25:05 -07:00
tsconfig.json First commit! 2020-10-08 09:21:27 -07:00
tslint.json minor cleanup 2020-10-15 11:59:56 -07:00
webpack.common.js Using a more standard way to serve static files 2020-10-18 02:46:25 +02:00
webpack.dev.js First commit! 2020-10-08 09:21:27 -07:00
webpack.js First commit! 2020-10-08 09:21:27 -07:00

mattermost-octo-tasks

Build instructions

make prebuild
make

Currently tested with:

  • Go 1.15.2
  • MacOS Catalina (10.15.6)

The server defaults to using sqlite as the store, but can be configured to use Postgres:

  • 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
  • Restart the server

Running and testing

To start the server:

./bin/octoserver

Server settings are in config.json.

Open a browser to http://localhost:8000 to start.