28 lines
480 B
Markdown
28 lines
480 B
Markdown
# lvl0 Website
|
|
|
|
## Production
|
|
|
|
Pull and run the image with Docker Compose:
|
|
|
|
```yaml
|
|
services:
|
|
website:
|
|
image: forge.lvl0.xyz/lvl0/lvl0-website:latest
|
|
container_name: lvl0-website
|
|
ports:
|
|
- 5002:80
|
|
restart: unless-stopped
|
|
```
|
|
|
|
The image is built and pushed automatically on every push to `main`.
|
|
|
|
## Development
|
|
|
|
Enter the nix-shell, then start the dev server:
|
|
|
|
```sh
|
|
nix-shell
|
|
dev-up
|
|
```
|
|
|
|
Site will be available at `http://localhost:1111` with live reload.
|