You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
349 B
18 lines
349 B
9 years ago
|
# systemd unit file
|
||
|
#
|
||
|
# place in /etc/systemd/system
|
||
|
# systemctl enable wetty.service
|
||
|
# systemctl start wetty.service
|
||
|
|
||
|
[Unit]
|
||
|
Description=Wetty Web Terminal
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
|
||
4 years ago
|
WorkingDirectory=$HOME/.config/yarn/global/node_modules/wetty/
|
||
|
ExecStart=/usr/bin/node index.js -p 3000 --host 127.0.0.1
|
||
9 years ago
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|