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]
|
||||
Description=Label Maker API
|
||||
ConditionPathExists=/home/mattronix/escpos-go-labels
|
||||
ConditionPathExists=/home/pi/escpos-go-labels
|
||||
After=network.target
|
||||
[Service]
|
||||
Type=simple
|
||||
User=mattronix
|
||||
Group=mattronix
|
||||
WorkingDirectory=/home/mattronix/escpos-go-labels
|
||||
ExecStart=/usr/bin/go run main.go
|
||||
User=pi
|
||||
Group=lp
|
||||
WorkingDirectory=/home/pi/escpos-go-labels
|
||||
ExecStart=/usr/local/go/bin/go run main.go
|
||||
Restart=on-failure
|
||||
RestartSec=10
|
||||
StandardOutput=syslog
|
||||
StandardError=syslog
|
||||
SyslogIdentifier=labelapi
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
WantedBy=multi-user.target
|
||||
|
|
Loading…
Reference in a new issue