Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 428 Bytes

README.md

File metadata and controls

42 lines (38 loc) · 428 Bytes

What?

A timeline of events

QuickStart

Webapp

Install depedencies

cd webapp && yarn

Launch server

yarn start

API

Install dependencies

cd api && yarn

Launch server

yarn start

Database

MySQL must be installed and running!

cd api

Setup db and seed:

yarn db:install  

Run migrations:

knex migrate:latest  

Seed db:

knex seed:run