2025-07-10 20:08:34 +02:00
|
|
|
# lvl0 Website
|
|
|
|
|
|
2025-08-01 23:59:26 +02:00
|
|
|
## Production
|
|
|
|
|
|
2026-05-10 02:30:08 +02:00
|
|
|
Pull and run the image with Docker Compose:
|
2025-08-01 23:59:26 +02:00
|
|
|
|
2026-05-10 02:30:08 +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
|
|
|
|
|
```
|
|
|
|
|
|
2026-05-10 02:30:08 +02:00
|
|
|
The image is built and pushed automatically on every push to `main`.
|
|
|
|
|
|
2025-07-10 20:08:34 +02:00
|
|
|
## Development
|
|
|
|
|
|
2026-05-10 02:30:08 +02:00
|
|
|
Enter the nix-shell, then start the dev server:
|
2025-07-10 20:08:34 +02:00
|
|
|
|
|
|
|
|
```sh
|
2026-05-10 02:30:08 +02:00
|
|
|
nix-shell
|
|
|
|
|
dev-up
|
2025-07-10 20:08:34 +02:00
|
|
|
```
|
2026-05-10 02:30:08 +02:00
|
|
|
|
|
|
|
|
Site will be available at `http://localhost:1111` with live reload.
|