- Next.js 16 app with React 19 and Tailwind CSS 4 - Multi-stage Dockerfile (node:20-alpine build → nginx:alpine runtime) - docker-compose.yml for container orchestration - nginx.conf for container-level configuration - GitHub Actions CI/CD workflow for automated deployment - .dockerignore and .gitignore configured Co-Authored-By: Paperclip <noreply@paperclip.ing>
30 lines
496 B
Markdown
30 lines
496 B
Markdown
# web
|
|
|
|
El Foundation web application.
|
|
|
|
## Getting Started
|
|
|
|
```bash
|
|
# From the repository root
|
|
pnpm install
|
|
pnpm dev
|
|
```
|
|
|
|
Open [http://localhost:3000](http://localhost:3000).
|
|
|
|
## Stack
|
|
|
|
- Next.js 16 (App Router)
|
|
- React 19
|
|
- TypeScript 5 (strict mode)
|
|
- Tailwind CSS 4
|
|
|
|
## Scripts
|
|
|
|
| Script | Description |
|
|
|--------|-------------|
|
|
| `pnpm dev` | Start the Next.js dev server |
|
|
| `pnpm build` | Build for production |
|
|
| `pnpm start` | Start the production server |
|
|
| `pnpm lint` | Run ESLint |
|