Tidy up environment variables for local dev
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
3wc 2024-05-18 14:38:21 -03:00
parent ff1126df49
commit 8a329feb3e
2 changed files with 14 additions and 8 deletions

15
.env
View File

@ -1,10 +1,13 @@
# This file is just for local dev; see <somewhere else> for live deployment
NAME=astroad NAME=astroad
ASTRO_HOST=localhost:3000
PAYLOAD_HOST=payload:3001 PAYLOAD_URL=http://localhost:3003
PAYLOAD_URL=http://localhost:3001 PAYLOAD_PORT=3003
PAYLOAD_PORT=3001
##############################################################################
# Infinite nerd depth settings, you probably don't need to change these #
##############################################################################
PAYLOAD_SECRET=supersecretkey PAYLOAD_SECRET=supersecretkey
MONGODB_USER=payload MONGODB_USER=payload
MONGODB_PASSWORD=password MONGODB_PASSWORD=password
TOKEN=supersecrettoken
REPOSITORY=mooxl/astroad

View File

@ -27,8 +27,8 @@ services:
environment: environment:
DEV: 1 DEV: 1
NAME: ${NAME} NAME: ${NAME}
PAYLOAD_URL: ${PAYLOAD_URL}
NODE_ENV: development NODE_ENV: development
PAYLOAD_URL: "http://localhost:${PAYLOAD_PORT}"
PAYLOAD_PORT: ${PAYLOAD_PORT} PAYLOAD_PORT: ${PAYLOAD_PORT}
PAYLOAD_SECRET: ${PAYLOAD_SECRET} PAYLOAD_SECRET: ${PAYLOAD_SECRET}
MONGODB_USER: MONGODB_USER:
@ -39,8 +39,10 @@ services:
volumes: volumes:
- ./payload/src:/base/src - ./payload/src:/base/src
- ./astro/src/types.ts:/types.ts - ./astro/src/types.ts:/types.ts
volumes:
- payload_media:/prod/dist/media
ports: ports:
- 3001:3001 - ${PAYLOAD_PORT}:${PAYLOAD_PORT}
networks: networks:
- front - front
- back - back
@ -69,3 +71,4 @@ networks:
volumes: volumes:
mongo: mongo:
payload_media: