All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 4m58s
Move Vue app from nginx/vue/ to top-level vue/ with its own Dockerfile, update docker-compose configs and nginx proxy to serve from the new container, and add initial Rust WASM crate (stp_wasm). Also fix .gitignore to exclude Rust target/ directories. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
364 B
YAML
18 lines
364 B
YAML
services:
|
|
vue:
|
|
command: ["npm", "run", "dev"]
|
|
volumes:
|
|
- ./vue:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- NODE_ENV=development
|
|
nginx:
|
|
environment:
|
|
- DEV_MODE=true
|
|
- SEED_DB=true
|
|
ports:
|
|
- 80:80
|
|
certbot:
|
|
profiles:
|
|
- disabled
|