lvl0-website/README.md

29 lines
480 B
Markdown
Raw Normal View History

2025-07-10 20:08:34 +02:00
# lvl0 Website
2025-08-01 23:59:26 +02:00
## Production
Pull and run the image with Docker Compose:
2025-08-01 23:59:26 +02:00
```yaml
2025-08-01 23:59:26 +02:00
services:
website:
2026-03-01 21:03:37 +01:00
image: forge.lvl0.xyz/lvl0/lvl0-website:latest
2025-08-01 23:59:26 +02:00
container_name: lvl0-website
ports:
- 5002:80
restart: unless-stopped
```
The image is built and pushed automatically on every push to `main`.
2025-07-10 20:08:34 +02:00
## Development
Enter the nix-shell, then start the dev server:
2025-07-10 20:08:34 +02:00
```sh
nix-shell
dev-up
2025-07-10 20:08:34 +02:00
```
Site will be available at `http://localhost:1111` with live reload.