Removed CLI UI references from README.

This commit is contained in:
ThePendulum 2019-09-22 19:32:10 +02:00
parent 57d2e350bd
commit a81c1458e8
1 changed files with 5 additions and 3 deletions

View File

@ -18,14 +18,16 @@ Do not modify `config/default.js`, but instead create a copy at `config/local.js
### Options ### Options
`npm start -- --option value` `npm start -- --option value`
* `--site [site ID]`: Only show updates from a specific site. The site ID is typically the site name in lowercase and without cases or special characters. For example, Teens Like It Big is teenslikeitbig. To run the web server, run `npm start` without any arguments.
* `--network [network ID]`: Show updates from all sites of a specific network. The network ID is composed similarly to the site ID.
* `--site [site ID]`: Fetch updates from a specific site. The site ID is typically the site name in lowercase and without cases or special characters. For example, Teens Like It Big is teenslikeitbig.
* `--network [network ID]`: Fetch updates from all sites of a specific network. The network ID is composed similarly to the site ID.
* `--after "[time]"`: Do not fetch scenes older than this. Example values are: `"1 month"`, `"2 weeks"`, `"3 years"`. * `--after "[time]"`: Do not fetch scenes older than this. Example values are: `"1 month"`, `"2 weeks"`, `"3 years"`.
* `--scene [URL]`: Try to retrieve scene details from its official site or network URL. * `--scene [URL]`: Try to retrieve scene details from its official site or network URL.
* `--deep`: Follow each release link found running `--site` or `--network` and scrape it for more details. Enabled by default at the moment of writing; use `--no-deep` to only save information found on the overview pages.
* `--copy`: Try to copy relevant results to the clipboard. When used with `--scene`, it will copy the filename as defined in the config with all the details filled in. * `--copy`: Try to copy relevant results to the clipboard. When used with `--scene`, it will copy the filename as defined in the config with all the details filled in.
#### Developer options #### Developer options
* `--no-render`: Fetch data, but don't render it to GUI screen.
* `--no-save`: Do not store retrieved information in local database, forcing re-fetch. * `--no-save`: Do not store retrieved information in local database, forcing re-fetch.
* `--debug`: Show full error stack trace. * `--debug`: Show full error stack trace.