- First clone or Fork the repository
- Install npm dependencies
- create env file (.env.development.local, .env.production.local, .env.test.local)
PORT = 3000
# DATABASE
DB_HOST = localhost
DB_PORT = 5432
DB_USER = postgres
DB_PASSWORD = password
DB_DATABASE = dev
# TOKEN
SECRET_KEY = secretKey
# LOG
LOG_FORMAT = dev
LOG_DIR = ../logs
# CORS
ORIGIN = *
CREDENTIALS = true
- npm run dev