Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
Find a file
2020-10-20 11:48:08 -07:00
.vscode First commit! 2020-10-08 09:21:27 -07:00
server Change fields type in Postgres to JSON 2020-10-19 12:10:26 -07:00
webapp Move package.json and webpack to under webapp 2020-10-20 11:48:08 -07:00
.editorconfig 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
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
README.md go get dependencies in make prebuild (refactor later) 2020-10-09 10:25:05 -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.