aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-10 15:41:52 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-10 15:41:52 -0400
commit5845db454f9b2a98bccc122a5de43003c8bdafaa (patch)
tree800bbc38239792370a0beb549dee6f6e2902cbf5
parentinitial commit (diff)
downloadphotoprism-autoimport-master.tar.gz
photoprism-autoimport-master.tar.bz2
photoprism-autoimport-master.zip
update readmeHEADmaster
-rw-r--r--README.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index e5a6cc3..ca2530e 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,7 @@ This is useful when the photos to be imported are added in a manner that does no
* Use PhotoSync android app. I don't use this because it's not listed in F-droid.
* Use some other WebDAV upload ability.
* Manually trigger uploads in PhotoPrism interface with heading Library -> Import tab.
+* Use a [docker-compose file](https://dl.photoprism.app/docker/scheduler/) that includes a job scheduler that runs `photoprism import` inside the docker container. Linked from [Reference 4][4].
## PhotoPrism-autoimport upstream
[This repository](https://gitlab.com/bgstack15/photoprism-autoimport/) is the upstream source of this project.
@@ -31,5 +32,9 @@ Call the shell script, after configuring the config file. Because the API reques
## References
[1]: <https://docs.photoprism.app/developer-guide/ui/rest-api/> REST API - PhotoPrism
+
[2]: <https://pkg.go.dev/github.com/photoprism/photoprism/internal/api?utm_source=godoc#StartImport> api package - github.com/photoprism/photoprism/internal/api - pkg.go.dev
+
[3]: <https://stackoverflow.com/questions/2683279/how-to-detect-if-a-script-is-being-sourced/28776166#28776166> bash - How to detect if a script is being sourced - Stack Overflow
+
+[4]: <https://docs.photoprism.app/getting-started/docker-compose/> Docker Compose - PhotoPrism
bgstack15