Scripts for installing and starting the app and nginx proxy. Includes systemd user service units and nginx configs for both user-mode 8443 and system-mode 443.
15 lines
294 B
Desktop File
15 lines
294 B
Desktop File
[Unit]
|
|
Description=Local Kanban Node app
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/home/gahow/projects/kanban
|
|
ExecStart=/home/gahow/projects/kanban/scripts/start-kanban.sh
|
|
Restart=always
|
|
RestartSec=3
|
|
Environment=NODE_ENV=production
|
|
|
|
[Install]
|
|
WantedBy=default.target
|