a coffee shop directory platform designed for individuals who seek conducive environments for work, study, or simply enjoying a quiet moment with their laptops.
-
Clone repository
git clone https://github.com/aitmiloud/sip-and-sit
-
Go to folder, and copy
env-example
as.env
.cd sip-and-sit cp env-example .env
-
Change
DATABASE_HOST=postgres
toDATABASE_HOST=localhost
Change
MAIL_HOST=maildev
toMAIL_HOST=localhost
-
Run additional container:
docker compose up -d postgres adminer maildev
-
Install dependency
npm install
-
Run migrations
npm run migration:run
-
Run seeds
npm run seed:run
-
Run app in dev mode
npm run start:dev