15 lines
538 B
Desktop File
15 lines
538 B
Desktop File
[Unit]
|
|
Description=The electricity JSON API written in rust
|
|
Requires=network.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
WorkingDirectory=/home/pi/project/home-data-collection-tools/target/release
|
|
ExecStart=/home/pi/project/home-data-collection-tools/target/release/electricity_api --database-path /home/pi/logs/electricity.db --listening-port 3002 --http-header-name-to-validate 'X-Real-IP' --http-header-value-to-validate 'IP_ADDR_V4_1,IP_ADDR_V4_2'
|
|
Restart=on-abnormal
|
|
RestartSec=30
|
|
User=pi
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |