-
Create and fill all .env file (use .env.example files as a reference). This file is:
./.env
-
Open terminal in root foder.
-
Install dependencies:
npm install
. -
Run app:
npm run dev
.
-
Create and fill all .env file (use .env.example files as a reference). This file is:
./.env
-
Open terminal in root foder.
-
Install dependencies:
npm install
. -
Run database by using
npm run db:up
or installing postgres server on your computer and manually creating database. -
Run database migrations:
npm run db:migrate
. -
Run database seeds:
npm run db:seed
. -
Run app:
npm run dev
.