- Install dependencies
npm install
- Create a
.env
file
cp .env.example .env
# Then edit the empty variables else the application will not work
- Start the database
docker-compose up -d
- Start the application
# production
npm build
npm start
# or development
npm run dev
- Open the application in your browser
http://localhost:3000