Files
another-boids-in-rust/debian/boids-webserver.service
Robert Garrett d36981fc0f Rename binary package to not collide with native
I haven't really thought about what I'm going to do to bring the WASM
and native builds back together...
2025-11-19 15:22:44 -06:00

14 lines
288 B
Desktop File

[Unit]
Description=A website hosting a WASM build of Boids
After=network.target
[Service]
Type=simple
ExecStart=/usr/bin/env python3 -m http.server -d /usr/share/boids 8000
Restart=never
User=www-data
Group=www-data
WorkingDirectory=/usr/share/boids
[Install]
WantedBy=multi-user.target