docs(striker-ui-api): run linter for README

main
Tsu-ba-me 1 year ago
parent 6d878e8eb0
commit 44e8f626ea
  1. 17
      striker-ui-api/README.md

@ -1,20 +1,24 @@
# Anvil system striker web interface API # Anvil system striker web interface API
## About NPM projects ## About NPM projects
In essence, this module and the striker web interface module share the same management workflows: In essence, this module and the striker web interface module share the same management workflows:
* All `npm` commands must be executed at the project root or lower level(s).
* To prepare the workspace, run `npm install`. - All `npm` commands must be executed at the project root or lower level(s).
* To produce a production build, run `npm run build`. - To prepare the workspace, run `npm install`.
- To produce a production build, run `npm run build`.
One major difference is there's no live development mode in this project. One major difference is there's no live development mode in this project.
See the striker we interface's [README](../striker-ui/README.md) for more details. See the striker we interface's [README](../striker-ui/README.md) for more details.
## Run prerequisites ## Run prerequisites
* This API module is targetted at NodeJS version 10, which is the default on CentOS/RHEL 8.
* All executables/files listed in `src/lib/consts/SERVER_PATHS.ts` and their respective dependencies are required. - This API module is targetted at NodeJS version 10, which is the default on CentOS/RHEL 8.
- All executables/files listed in `src/lib/consts/SERVER_PATHS.ts` and their respective dependencies are required.
## Build ## Build
Run `npm run build` to produce a minified script at `out/index.js`. The output script can be executed with NodeJS assuming all prerequisites are met. Run `npm run build` to produce a minified script at `out/index.js`. The output script can be executed with NodeJS assuming all prerequisites are met.
There's no need to remove the old build prior to a new build because the build process always overwrites the one file. There's no need to remove the old build prior to a new build because the build process always overwrites the one file.
@ -22,12 +26,15 @@ There's no need to remove the old build prior to a new build because the build p
`systemd` expects the build to be placed exactly at `/usr/share/striker-ui-api/index.js` on a striker. `systemd` expects the build to be placed exactly at `/usr/share/striker-ui-api/index.js` on a striker.
## Logs ## Logs
At the time of writing, no logging library was added. Logs are either `stdout` or `stderr` without levels. When the API runs as a service, its logs can be viewed with `journalctl --unit striker-ui-api`. At the time of writing, no logging library was added. Logs are either `stdout` or `stderr` without levels. When the API runs as a service, its logs can be viewed with `journalctl --unit striker-ui-api`.
Due to the large amount of logs produced, it's highly recommended to note the time of a test, and specify a time frame with `journalctl --since <date parsable time> --until <date parsable time>` to help with the search. Due to the large amount of logs produced, it's highly recommended to note the time of a test, and specify a time frame with `journalctl --since <date parsable time> --until <date parsable time>` to help with the search.
## Systemd service ## Systemd service
The service file of this API module is located in `../units/`. Environment varibles can be set with the `Environment=<variable name>=<value>` directive, i.e., to set the main server's port to `80`, use `Environment=PORT=80`. The service file of this API module is located in `../units/`. Environment varibles can be set with the `Environment=<variable name>=<value>` directive, i.e., to set the main server's port to `80`, use `Environment=PORT=80`.
## Environment varibles ## Environment varibles
Variables can be set to affect the API's funtionalities, i.e. listen on a different port. A complete list with explanations is located at `src/lib/consts/ENV.ts` Variables can be set to affect the API's funtionalities, i.e. listen on a different port. A complete list with explanations is located at `src/lib/consts/ENV.ts`

Loading…
Cancel
Save