Backend for the Trello clone - Trollo, a maturita project
- go to the project folder and type
yarn
ornpm install
to install all dependencies - create a postgres database on localhost, then put the credentials in knexfile.ts
- run
knex migrate:latest
to create the database schema - (optional) run
knex seed:run
to initialize database with mock data - run app in dev environment using
yarn run dev
ornpm run dev