move to node version 17, updated readme and renamed example config
This commit is contained in:
parent
2b30557a14
commit
8a9af168a7
5 changed files with 58 additions and 11 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
node_modules/
|
|
||||||
config.json
|
config.json
|
||||||
|
node_modules/
|
||||||
|
npm-debug.log
|
2
.nvmrc
2
.nvmrc
|
@ -1 +1 @@
|
||||||
16
|
17
|
2
.vscode/launch.json
vendored
2
.vscode/launch.json
vendored
|
@ -3,7 +3,7 @@
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"type": "pwa-node",
|
"type": "pwa-node",
|
||||||
"runtimeVersion": "16",
|
"runtimeVersion": "17",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"name": "remex",
|
"name": "remex",
|
||||||
"skipFiles": [
|
"skipFiles": [
|
||||||
|
|
60
README.md
60
README.md
|
@ -2,12 +2,58 @@
|
||||||
|
|
||||||
execute local commands remotely via http requests
|
execute local commands remotely via http requests
|
||||||
|
|
||||||
|
## requirements
|
||||||
|
|
||||||
|
- node.js
|
||||||
|
- [nvm](https://github.com/nvm-sh/nvm)
|
||||||
|
|
||||||
|
## setup (as root)
|
||||||
|
|
||||||
|
- install nvm
|
||||||
|
|
||||||
|
- to load nvm restart your terminal or `source ~/.nvm/nvm.sh`
|
||||||
|
|
||||||
|
- clone the project (to '/opt/remex')
|
||||||
|
`git clone https://git.velvettear.de/velvettear/remex.git /opt/remex`
|
||||||
|
|
||||||
|
- install and switch to a supported node.js version (automatically done via .nvmrc file)
|
||||||
|
`nvm install`
|
||||||
|
|
||||||
|
- install the required modules
|
||||||
|
`npm install`
|
||||||
|
|
||||||
|
- switch back to your system's default node.js version
|
||||||
|
`nvm deactivate`
|
||||||
|
|
||||||
|
- execute remex
|
||||||
|
`nvm run remex.js`
|
||||||
|
|
||||||
|
## systemd
|
||||||
|
|
||||||
|
**for security reasons it is highly recommended to not run remex with root permissions!**
|
||||||
|
|
||||||
|
- create a new system user
|
||||||
|
`useradd -U -r -s /usr/bin/nologin node`
|
||||||
|
|
||||||
|
- make your install of nvm available to the new user
|
||||||
|
`cp -R ~/.nvm /opt/nvm`
|
||||||
|
`chown -R node /opt/nvm`
|
||||||
|
|
||||||
|
- symlink the provided systemd-service file and modify it according to your needs
|
||||||
|
`ln -s /opt/remex/remex.service /etc/systemd/system/remex.service`
|
||||||
|
|
||||||
|
- reload systemd-services
|
||||||
|
`systemctl daemon-reload`
|
||||||
|
|
||||||
|
- enable and start the remex as a systemd-service
|
||||||
|
`systemctl enable --now remex`
|
||||||
|
|
||||||
## configuration
|
## configuration
|
||||||
|
|
||||||
configuration is done entirely within the file `config.json`.
|
configuration is done entirely within the file `config.json`.
|
||||||
|
|
||||||
### server: [*object*]
|
### server: [*object*]
|
||||||
- listen: [*string*] listen address
|
- address: [*string*] server address to listen on (`0.0.0.0` to listen on all interfaces)
|
||||||
- port: [*number*] port to listen on
|
- port: [*number*] port to listen on
|
||||||
|
|
||||||
### log: [*object*]
|
### log: [*object*]
|
||||||
|
@ -15,10 +61,10 @@ configuration is done entirely within the file `config.json`.
|
||||||
- timestamp: [*string*] format string for the timestamp; review [moment.js](https://momentjs.com/docs/#/displaying/format/) for further information
|
- timestamp: [*string*] format string for the timestamp; review [moment.js](https://momentjs.com/docs/#/displaying/format/) for further information
|
||||||
|
|
||||||
### api: [*object-array*]
|
### api: [*object-array*]
|
||||||
- url: [*string*] endpoint url; example: `/example`
|
- url: [*string*] url of the endpoint
|
||||||
- method: [*string*] http request method
|
- type: [*string*] http request method for the endpoint (either `get` or `post`)
|
||||||
- command: [*string*] command to execute
|
- command: [*string*] command / path to script to execute
|
||||||
- args: [*string-array*] arguments to pass to the executed command
|
- args: [*string-array*] arguments to pass to the executed command
|
||||||
- options: [*object*]
|
- timeout [*number*] max amount of time in milliseconds until the executed command times out and gets killed
|
||||||
- detach [*boolean*] detach from the executed command / do not wait for the command to finish
|
- detach [*boolean*] detach from the executed command
|
||||||
- unique [*boolean* or *string*] if set to `true` the command can not be executed again until it has finished; if set to `restart` the command will be killed (if active) and started again; if set to `toggle` the command will either be killed if active or started if not active
|
- unique [*boolean* or *string*] if set to `true` the command can not be executed again until it has finished; if set to `restart` the command will be killed (if active) and started again; if set to `toggle` the command will either be killed if active or started if not active
|
||||||
|
|
Loading…
Reference in a new issue