Initial commit: twin-optimiser sub-app (housekeeping category)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
commit
a695bd843f
28 changed files with 1913 additions and 0 deletions
32
docker-compose.yml
Normal file
32
docker-compose.yml
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
services:
|
||||
twin-optimiser-backend:
|
||||
build: ./backend
|
||||
container_name: twin-optimiser-backend
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
DATABASE_URL: ${DATABASE_URL}
|
||||
CENTRAL_AUTH_SECRET: ${CENTRAL_AUTH_SECRET}
|
||||
SETTINGS_URL: ${SETTINGS_URL}
|
||||
SETTINGS_SECRET: ${SETTINGS_SECRET}
|
||||
APP_SLUG: twin-optimiser
|
||||
OFFICE_IP_CHECK: ${OFFICE_IP_CHECK:-disabled}
|
||||
networks:
|
||||
- hnf_net
|
||||
|
||||
twin-optimiser-frontend:
|
||||
build:
|
||||
context: ./frontend
|
||||
args:
|
||||
VITE_HOTEL_NAME: ${VITE_HOTEL_NAME}
|
||||
container_name: twin-optimiser-frontend
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "${FRONTEND_PORT:-3080}:80"
|
||||
depends_on:
|
||||
- twin-optimiser-backend
|
||||
networks:
|
||||
- hnf_net
|
||||
|
||||
networks:
|
||||
hnf_net:
|
||||
external: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue