Compare commits

...

5 Commits

Author SHA1 Message Date
DebaucheryLibrarian 0e804db130 1.138.1 2020-10-25 01:29:41 +02:00
DebaucheryLibrarian 57a44d6643 Expanded README. 2020-10-25 01:29:25 +02:00
DebaucheryLibrarian 7e3e0d8f30 Merge branch 'experimental' into master 2020-10-25 01:22:50 +02:00
DebaucheryLibrarian 07b94f1513 Updated README. 2020-10-25 01:22:40 +02:00
DebaucheryLibrarian 9619f7e7ed 1.138.0 2020-10-25 01:17:51 +02:00
4 changed files with 8 additions and 6 deletions

View File

@ -86,6 +86,12 @@ To generate thumbnails for new logos and tag photos, install ImageMagick and run
#### Developers
* `--no-save`: Do not store retrieved information in local database, forcing re-fetch.
* `--level`: Change log level to `silly`, `verbose`, `info`, `warn` or `error`.
* `--delete-scenes`: Delete scenes and assets by ID.
* `--delete-movies`: Delete movies and assets by ID.
* `--flush-network`: Delete all scenes and movies with assets from all network channels
* `--flush-channel`: Delete all scenes and movies with assets from a channel
* `--flush-batch`: Delete all scenes and movies with assets from a batch ID
* `--flush-media`: Delete temporary media directory and all unassociated media entries and files
### API
A GraphQL API is available at `/graphql`, and a REST API is available at the following `GET` endpoints:

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.137.6",
"version": "1.138.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.137.6",
"version": "1.138.1",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -41,10 +41,6 @@ async function init() {
await deleteMovies(argv.deleteMovies);
}
if (argv.delete) {
await deleteScenes(argv.delete);
}
if (argv.flushOrphanedMedia) {
await flushOrphanedMedia();
}