A project management tool built using Scotty
You'll need:
- Copy the development config example:
cp config/development.env.example config/development.env - Fill in API tokens
- Create the database:
createuser --createdb scottycreatedb --owner=scotty scotty-story-board
- Build:
stack build - Migrate the database:
stack exec migrate development - Run:
stack exec web - Visit localhost:3000
- Create the database:
createuser --createdb scotty(if not done already)createdb --owner=scotty scotty-story-board-test
- Migrate the database:
stack exec migrate test - Build and run:
stack test