Install dependencies:
npm install
Make a copy of .env.example
file and fill in all environment variables:
cp .env.example .env
Set up local databases:
docker-compose up -d
Create tables:
npm run dev:db:create
Seed tables (optional):
npm run dev:db:seed
Run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.