Note: This project is currently under development. Features may be incomplete and subject to significant changes.
This is a Next.js project bootstrapped with create-next-app, using Docker for development and deployment.
- Docker
- Docker Compose
To run the development server:
# Build and start the containers
docker-compose up --build
# Or run in detached mode
docker-compose up -d --buildOpen http://localhost:3000 with your browser to see the result.
To stop the application:
# If running in attached mode, use Ctrl+C, then:
docker-compose down
# If running in detached mode:
docker-compose down
# To stop and remove volumes (this will delete the database data):
docker-compose down -v.
├── src/
│ ├── app/
│ │ └── ...
│ ├── components/
│ │ └── ...
│ └── ...
├── public/
│ └── ...
├── docker-compose.yml
├── Dockerfile
├── init.sql
├── package.json
└── README.md