Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 861 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 861 Bytes

scotty-story-board

A project management tool built using Scotty

Setup

You'll need:

Running

  • Copy the development config example: cp config/development.env.example config/development.env
  • Fill in API tokens
  • Create the database:
    • createuser --createdb scotty
    • createdb --owner=scotty scotty-story-board
  • Build: stack build
  • Migrate the database: stack exec migrate development
  • Run: stack exec web
  • Visit localhost:3000

Running tests

  • 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