Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
Go to file
2020-10-09 09:53:15 +02:00
.vscode First commit! 2020-10-08 09:21:27 -07:00
html-templates First commit! 2020-10-08 09:21:27 -07:00
server/main Improvements around marshalling and status codes 2020-10-09 09:53:15 +02:00
src First commit! 2020-10-08 09:21:27 -07:00
.eslintignore First commit! 2020-10-08 09:21:27 -07:00
.eslintrc First commit! 2020-10-08 09:21:27 -07:00
.gitignore First commit! 2020-10-08 09:21:27 -07:00
.prettierrc.json First commit! 2020-10-08 09:21:27 -07:00
config.json First commit! 2020-10-08 09:21:27 -07:00
Makefile First commit! 2020-10-08 09:21:27 -07:00
package-lock.json Add README.md 2020-10-08 09:26:05 -07:00
package.json First commit! 2020-10-08 09:21:27 -07:00
README.md Updated README 2020-10-08 10:01:56 -07:00
tsconfig.json First commit! 2020-10-08 09:21:27 -07:00
tslint.json First commit! 2020-10-08 09:21:27 -07:00
webpack.common.js First commit! 2020-10-08 09:21:27 -07: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

npm i
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.