First time runner:
-
Copy the environment file.
cp env-example-relational .env
-
Run migrations.
npm run migration:run
-
Install dependencies.
npm install
Running for development:
-
Start required services using Docker.
docker compose up -d mysql adminer maildev
-
Run the application in development mode.
npm run start:dev
-
Open your browser and go to: http://localhost:3000
If it's your first time:
-
Copy the environment file.
cp env-example-relational .env
-
Start the application using Docker.
docker compose up -d
-
Open your browser and go to: http://localhost:3000
To stop containers:
docker compose down