Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnewhall committed Jul 16, 2024
1 parent 29250b4 commit f0378de
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/install/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,7 @@ Event IDs are needed/used in command hooks and webhooks.
`5` = imported, `6` = deleting, `7` = delete failed, `8` = deleted, `9` = nothing extracted

The 'nothing extracted' event (9) only fires for the folder watcher, not starr apps.

---

_<font color="gray" style={{float: 'right'}}>This page is [generated automatically](https://github.com/Unpackerr/unpackerr/tree/main/init/config).</font>_
12 changes: 10 additions & 2 deletions generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
# The beginning: https://github.com/Unpackerr/unpackerr/pull/459
# The generator: https://github.com/Unpackerr/unpackerr/tree/main/init/config

# Bail on an errors.
set -e
go env -w GOPRIVATE=github.com/Unpackerr/unpackerr/*

# We do this because go cache will download an older version.
go env -w 'GOPRIVATE=github.com/Unpackerr/*'

# Move into the directory <this script>/docs/install.
pushd "$(dirname -- "${BASH_SOURCE[0]}")/docs/install"
go run github.com/Unpackerr/unpackerr/init/config@main docs

# Run the config generator directly from github.
go run github.com/Unpackerr/unpackerr/init/config@main -type documentation

# Go back to wherever we were when we started.
popd

0 comments on commit f0378de

Please sign in to comment.