19 lines
486 B
Desktop File
19 lines
486 B
Desktop File
[Unit]
|
|
Description=Islandflow web
|
|
After=network-online.target
|
|
Wants=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/home/delta/islandflow
|
|
Environment=WEB_HOST=0.0.0.0
|
|
Environment=WEB_PORT=3000
|
|
EnvironmentFile=/home/delta/islandflow/.env
|
|
ExecStart=/bin/sh -lc 'cd /home/delta/islandflow/apps/web && exec /home/delta/.bun/bin/bun x next start -H "$WEB_HOST" -p "$WEB_PORT"'
|
|
Restart=always
|
|
RestartSec=2
|
|
KillSignal=SIGINT
|
|
TimeoutStopSec=20
|
|
|
|
[Install]
|
|
WantedBy=default.target
|