Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
Find a file
2020-10-15 14:56:15 -07:00
.vscode
html-templates Adding root portal and initial test machinery 2020-10-14 08:56:46 +02:00
server/main Refactor database to store Block fields 2020-10-15 14:56:15 -07:00
src Refactor Blocks - each with its own class 2020-10-15 13:23:33 -07:00
.editorconfig Adding initial coding style checking 2020-10-15 01:02:41 +02:00
.eslintignore
.eslintrc
.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
config.json Refactor IBlock to use fields 2020-10-14 17:35:15 -07:00
Makefile
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
tsconfig.json
tslint.json minor cleanup 2020-10-15 11:59:56 -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
webpack.js

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.