generated from autonomic-cooperative/astro-payload-template
Compare commits
2 Commits
038cc1228c
...
8a329feb3e
Author | SHA1 | Date | |
---|---|---|---|
8a329feb3e | |||
ff1126df49 |
15
.env
15
.env
@ -1,10 +1,13 @@
|
||||
# This file is just for local dev; see <somewhere else> for live deployment
|
||||
NAME=astroad
|
||||
ASTRO_HOST=localhost:3000
|
||||
PAYLOAD_HOST=payload:3001
|
||||
PAYLOAD_URL=http://localhost:3001
|
||||
PAYLOAD_PORT=3001
|
||||
|
||||
PAYLOAD_URL=http://localhost:3003
|
||||
PAYLOAD_PORT=3003
|
||||
|
||||
##############################################################################
|
||||
# Infinite nerd depth settings, you probably don't need to change these #
|
||||
##############################################################################
|
||||
|
||||
PAYLOAD_SECRET=supersecretkey
|
||||
MONGODB_USER=payload
|
||||
MONGODB_PASSWORD=password
|
||||
TOKEN=supersecrettoken
|
||||
REPOSITORY=mooxl/astroad
|
||||
|
@ -6,6 +6,8 @@ services:
|
||||
build:
|
||||
context: astro
|
||||
command: ["yarn", "dev"]
|
||||
environment:
|
||||
DEV: 1
|
||||
networks:
|
||||
- front
|
||||
volumes:
|
||||
@ -23,8 +25,10 @@ services:
|
||||
build:
|
||||
context: payload
|
||||
environment:
|
||||
DEV: 1
|
||||
NAME: ${NAME}
|
||||
PAYLOAD_URL: ${PAYLOAD_URL}
|
||||
NODE_ENV: development
|
||||
PAYLOAD_URL: "http://localhost:${PAYLOAD_PORT}"
|
||||
PAYLOAD_PORT: ${PAYLOAD_PORT}
|
||||
PAYLOAD_SECRET: ${PAYLOAD_SECRET}
|
||||
MONGODB_USER:
|
||||
@ -35,8 +39,10 @@ services:
|
||||
volumes:
|
||||
- ./payload/src:/base/src
|
||||
- ./astro/src/types.ts:/types.ts
|
||||
volumes:
|
||||
- payload_media:/prod/dist/media
|
||||
ports:
|
||||
- 3001:3001
|
||||
- ${PAYLOAD_PORT}:${PAYLOAD_PORT}
|
||||
networks:
|
||||
- front
|
||||
- back
|
||||
@ -65,3 +71,4 @@ networks:
|
||||
|
||||
volumes:
|
||||
mongo:
|
||||
payload_media:
|
||||
|
Loading…
Reference in New Issue
Block a user