| .. | ||
| src | ||
| .dockerignore | ||
| .DS_Store | ||
| .env.local | ||
| .eslintrc.json | ||
| components.json | ||
| Dockerfile | ||
| next-env.d.ts | ||
| next.config.mjs | ||
| package.json | ||
| postcss.config.js | ||
| README.md | ||
| tailwind.config.ts | ||
| tsconfig.json | ||
Frontend
Local development
npm install
npm run dev
Frontend runs on http://localhost:3001.
.env.local must include:
BACKEND_URL=http://localhost:3000/api
Docker compose (from project root)
make build
make up
Frontend container listens on port 3001 and uses BACKEND_URL=http://backend:3000/api from root compose.