This repository contains the code for the Viral Images project
Build and run the unified FastAPI container that also serves the statically exported Next.js app at /:
docker-compose --profile backend up --buildThe app will be available at http://localhost:${BACKEND_PORT:-8000}.
For local frontend development with hot reload, you can still run the standalone Next.js dev server:
docker-compose --profile frontend up --buildThe dev server will be available at http://localhost:${FRONTEND_PORT:-3000} and will call the backend API at /api.