Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
Go to file
2020-10-15 22:34:53 +02:00
.vscode First commit! 2020-10-08 09:21:27 -07:00
html-templates Adding root portal and initial test machinery 2020-10-14 08:56:46 +02:00
server/main Refactor IBlock to use fields 2020-10-14 17:35:15 -07:00
src Merge remote-tracking branch 'origin/main' into split-dialog-and-card-detail 2020-10-15 22:34:53 +02:00
.eslintignore First commit! 2020-10-08 09:21:27 -07:00
.eslintrc First commit! 2020-10-08 09:21:27 -07:00
.gitignore Refactor IBlock property as map 2020-10-13 17:00:16 -07:00
.prettierrc.json First commit! 2020-10-08 09:21:27 -07:00
config.json Refactor IBlock to use fields 2020-10-14 17:35:15 -07:00
Makefile go get dependencies in make prebuild (refactor later) 2020-10-09 10:25:05 -07:00
package-lock.json cleanup package-lock.json 2020-10-14 12:27:45 -07:00
package.json cleanup package-lock.json 2020-10-14 12:27:45 -07: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 First commit! 2020-10-08 09:21:27 -07:00
webpack.common.js Merge pull request #4 from mattermost/sass-aside-component 2020-10-14 11:31:38 -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

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.