- Created package.json for managing workspaces (frontend and backend) - Added scripts for development, build, testing, and Docker operations - Implemented kill-dev-processes.sh script to terminate development processes gracefully
17 lines
280 B
YAML
17 lines
280 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
volumes:
|
|
- ..:/workspace:cached
|
|
ports:
|
|
- "3000:3000"
|
|
- "3001:3001"
|
|
- "9229:9229"
|
|
- "9230:9230"
|
|
command: sleep infinity
|
|
working_dir: /workspace
|