├── .gitignore ├── CHANGELOG.md ├── README.md ├── bin └── main.js ├── doc └── README.md ├── index.js ├── lib ├── settings.js ├── setup.js └── templates.js ├── package.json └── test ├── _test.js └── samples ├── apps ├── app0.js └── app1.js └── settings ├── forever-full.json ├── forever-minimal.json ├── node-full.json ├── node-minimal.json └── template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/README.md -------------------------------------------------------------------------------- /bin/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/bin/main.js -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/doc/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/index.js -------------------------------------------------------------------------------- /lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/lib/settings.js -------------------------------------------------------------------------------- /lib/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/lib/setup.js -------------------------------------------------------------------------------- /lib/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/lib/templates.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/package.json -------------------------------------------------------------------------------- /test/_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/_test.js -------------------------------------------------------------------------------- /test/samples/apps/app0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/apps/app0.js -------------------------------------------------------------------------------- /test/samples/apps/app1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/apps/app1.js -------------------------------------------------------------------------------- /test/samples/settings/forever-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/settings/forever-full.json -------------------------------------------------------------------------------- /test/samples/settings/forever-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/settings/forever-minimal.json -------------------------------------------------------------------------------- /test/samples/settings/node-full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/settings/node-full.json -------------------------------------------------------------------------------- /test/samples/settings/node-minimal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/settings/node-minimal.json -------------------------------------------------------------------------------- /test/samples/settings/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simone-sanfratello/service-systemd/HEAD/test/samples/settings/template.json --------------------------------------------------------------------------------