729 B
729 B
PrismaNestAngular
Blog post used as guide for setting up Nx + Angular + NestJs + Prisma stack here
Setup
-
create .env file in root of the directory and define DATABASE_URL. Default is
DATABASE_URL="postgresql://webapp:webpass@db:5432/webappdb/webappdb?schema=public" -
Install node modules
pnpm install
Running
Run entire stack in dev environent using docker compose:
docker compose up -d --build
By default frontend can be accessed in localhost:4200
By default backend can be accessed in localhost:3000/api