The fastest way to deploy the full stack (frontend + backend + MongoDB) is Docker Compose.
cp Backend/.env.example Backend/.env
cp frontend/.env.example frontend/.envUpdate secrets in Backend/.env before production use.
docker compose up --build -d- Frontend:
http://localhost:3000 - Backend API:
http://localhost:3001 - Health check:
http://localhost:3001/health
docker compose downcd Backend
cp .env.example .env
npm install
npm run startcd frontend
cp .env.example .env
npm install
npm run buildServe frontend/build with Nginx/Apache or any static hosting provider.



