Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
47b29ffe1f | |||
d3489c1739 |
3 changed files with 13 additions and 6 deletions
5
go.mod
Normal file
5
go.mod
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
module escpos-go-labels
|
||||||
|
|
||||||
|
go 1.22.4
|
||||||
|
|
||||||
|
require github.com/kenshaw/escpos v0.0.0-20221114190919-df06b682a8fc // indirect
|
2
go.sum
Normal file
2
go.sum
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
github.com/kenshaw/escpos v0.0.0-20221114190919-df06b682a8fc h1:4JwmN2Scz1vR+hfSxkdy2IE/DzxX2Cftm2lhWHyN0k0=
|
||||||
|
github.com/kenshaw/escpos v0.0.0-20221114190919-df06b682a8fc/go.mod h1:M+GIBmg2MqaSWIJrXCZS+/wRFbr9fOguRz3SHn8DRPE=
|
|
@ -1,17 +1,17 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Label Maker API
|
Description=Label Maker API
|
||||||
ConditionPathExists=/home/mattronix/escpos-go-labels
|
ConditionPathExists=/home/pi/escpos-go-labels
|
||||||
After=network.target
|
After=network.target
|
||||||
[Service]
|
[Service]
|
||||||
Type=simple
|
Type=simple
|
||||||
User=mattronix
|
User=pi
|
||||||
Group=mattronix
|
Group=lp
|
||||||
WorkingDirectory=/home/mattronix/escpos-go-labels
|
WorkingDirectory=/home/pi/escpos-go-labels
|
||||||
ExecStart=/usr/bin/go run main.go
|
ExecStart=/usr/local/go/bin/go run main.go
|
||||||
Restart=on-failure
|
Restart=on-failure
|
||||||
RestartSec=10
|
RestartSec=10
|
||||||
StandardOutput=syslog
|
StandardOutput=syslog
|
||||||
StandardError=syslog
|
StandardError=syslog
|
||||||
SyslogIdentifier=labelapi
|
SyslogIdentifier=labelapi
|
||||||
[Install]
|
[Install]
|
||||||
WantedBy=multi-user.target
|
WantedBy=multi-user.target
|
||||||
|
|
Loading…
Reference in a new issue