-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move minio to a seperate file * feat: rudimentary impl of from cache * ci: update versions * feat: add storage cleaning job * docs: update readme for self hosting config * docs: typo
- Loading branch information
1 parent
020a81e
commit 34c8b2a
Showing
10 changed files
with
276 additions
and
225 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
MINIO_ROOT_USER="" # eg: minioadmin | ||
MINIO_ROOT_PASSWORD="" # eg: "minioadmin" | ||
BUCKET_NAME="" # eg: "binaries" | ||
STORAGE_ENABLED= | ||
STORAGE_CLIENT_ID= | ||
STORAGE_CLIENT_SECRET= | ||
STORAGE_ENDPOINT= | ||
STORAGE_BUCKET= | ||
ORIGIN_URL="" # eg: "http://localhost" depending on your nginx config changes | ||
MINIO_URL_PREFIX="" # eg: "http://localhost:9000" depending on your nginx config changes | ||
GITHUB_TOKEN="" # required for github version resolutions | ||
|
||
# uncomment the below to enable cache clearing based on the passed duration | ||
# CLEAR_CACHE_TIME="10m" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.