Add fullstack example

This commit is contained in:
Mike Conrad
2025-06-11 16:15:52 -04:00
parent f98e05b677
commit 1a58bc3220
40 changed files with 8639 additions and 634 deletions

View File

@ -0,0 +1,16 @@
---
services:
backend:
build:
context: backend
target: develop
env_file: ./backend/.env
volumes:
- ./backend:/app
- node_modules:/app/node_modules
command: /bin/sh -c "node ace generate:key; node ace migration:run --force && node ace serve --watch"
depends_on:
db:
condition: service_healthy
volumes:
node_modules: {}