devkit-cli
Version: 
Professional fullstack project generator CLI (FastAPI + React, Express + Vue, multi-db, Docker/Podman ready)
19 lines (18 loc) • 346 B
YAML
version: '3.8'
services:
  backend:
    build: ./backend
    ports:
      - "8000:8000"
    env_file:
      - ./backend/.env
    volumes:
      - ./backend:/app
    command: uvicorn app.main:app --host 0.0.0.0 --reload
  frontend:
    build: ./frontend
    ports:
      - "3000:3000"
    volumes:
      - ./frontend:/app
    command: npm run dev