-
Notifications
You must be signed in to change notification settings - Fork 2
Actions to launch project
yodeco edited this page Apr 1, 2019
·
7 revisions
- Navigate to project root folder;
- Navigate ./client folder;
- Do yarn -v
- If you was unable to see version of yarn, install at https://yarnpkg.com/en/docs/install
- After yarn installed, inside 'client' folder, run
yarn install - Then run
yarn run start - Front should be accessed at http://localhost:3000/
Navigate to project root folder;
- Navigate ./server folder;
- Run command
npm i - Install docker https://www.docker.com/products/docker-desktop
- Run command
make up(init db) - If no knex, install globally
- Run command
knex migrate:latest(start migrations) - Run command
knex seed:run(start seed) - Run command
npm start(launches project)