Compare commits

...

2 Commits

@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
## [1.0.0](https://git.lufrai.com/rappli/rappli/compare/v0.4.0...v1.0.0) (2022-07-01)
### Features
* version systemd service example ([70e324a](https://git.lufrai.com/rappli/rappli/commit/70e324a6cdade061fce0dce091a182763dbfb340))
## [0.4.0](https://git.lufrai.com/rappli/rappli/compare/v0.3.0...v0.4.0) (2022-06-30)

4
package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "rappli",
"version": "0.4.0",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "rappli",
"version": "0.4.0",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"solid-start": "v0.1.0-alpha.89",

@ -1,6 +1,6 @@
{
"name": "rappli",
"version": "0.4.0",
"version": "1.0.0",
"bin": "./bin/rappli.js",
"scripts": {
"dev": "solid-start dev",

@ -0,0 +1,16 @@
[Unit]
Description=Rappli
After=network.target
Wants=network-online.target
[Service]
Restart=always
Type=simple
ExecStart=/home/ubuntu/.nvm/nvm-exec npm start
# TODO: Add a script which installs this service and sets the WorkingDirectory and Domain automatically
WorkingDirectory=/home/ubuntu/apps/rappli/
Environment='DOMAIN=rappli.ch' 'NODE_VERSION=18'
User=ubuntu
[Install]
WantedBy=multi-user.target
Loading…
Cancel
Save