Merge branch 'master' of github.com:WeebDev/lolisafe

This commit is contained in:
Pitu 2021-01-05 16:39:13 +09:00
commit 4bda02813f
2 changed files with 42 additions and 0 deletions

14
chibisafe-sample.service Normal file
View File

@ -0,0 +1,14 @@
[Unit]
Description=chibisafe, easy to use file uploader
After=network.target
[Service]
Type=simple
User=yourusername
WorkingDirectory=/path/to/chibisafe
EnvironmentFile=/path/to/chibisafe/.env
ExecStart=/usr/bin/npm run start
Restart=always
[Install]
WantedBy=multi-user.target

28
docs/systemd.md Normal file
View File

@ -0,0 +1,28 @@
### Service config for systemd
The file chibisafe-example.service is to be moved to `/etc/systemd/system/chibisafe.service`
You will need to edit the parameters:
- `User` to be the username/uid of your chibisafe instance
- `WorkingDirectory` to the **FULL** path to your chibisafe, `/home/chibisafe/chibisafe` for example.
- `EnvironmentFile` the same as the above, with the addition of `/.env`, `/home/chibisafe/chibisafe/.env`
### If you are using n/nvm you will also need to update the path to npm in `ExecStart`
- For n this will likely be `/home/username/n/bin/npm`
- You can also find this by running `whereis npm` in your terminal and copy the path from the output.
Example below.
```[Unit]
Description=chibisafe, easy to use file uploader
After=network.target
[Service]
Type=simple
User=chibisafe
WorkingDirectory=/home/chibisafe/chibisafe
EnvironmentFile=/home/chibisafe/chibisafe/.env
ExecStart=/usr/bin/npm run start
Restart=always
[Install]
WantedBy=multi-user.target```