You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
439 B
8 lines
439 B
# База данных (локально: порт как в docker-compose.yml, маппинг 5434 -> 5432 в контейнере) |
|
DATABASE_URL="postgresql://brandbook:brandbook@localhost:5434/brandbook" |
|
|
|
# API (NestJS) — в коде используется переменная PORT |
|
PORT=3001 |
|
|
|
# Web (Next.js) — URL API в браузере (при docker compose: http://localhost:3001) |
|
NEXT_PUBLIC_API_URL=http://localhost:3001
|
|
|