diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 12:54:34 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 12:54:34 +0300 |
commit | f72f39fbac550566c10b5f9e8336bf0ee7db7f33 (patch) | |
tree | dc0952ed15ac7596d0b57ed89b39d6518a30303b /examples | |
parent | .ci/docker: make ssh-add use SSH_ASKPASS (diff) | |
download | cgitize-f72f39fbac550566c10b5f9e8336bf0ee7db7f33.tar.gz cgitize-f72f39fbac550566c10b5f9e8336bf0ee7db7f33.zip |
cgitize.config: allow passing secrets via environment
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cgitize.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/cgitize.toml b/examples/cgitize.toml index ed89878..6046e36 100644 --- a/examples/cgitize.toml +++ b/examples/cgitize.toml @@ -16,7 +16,8 @@ owner = "Your Name" [github] # If some of the repositories hosted on GitHub are private, you can use -# "personal access tokens" to access them. +# "personal access tokens" to access them. Also can be provided using the +# CGITIZE_GITHUB_ACCESS_TOKEN environment variable. #access_token = "XXX" # Some random repositories hosted on GitHub: @@ -27,7 +28,8 @@ id = "bobfang1992/pytomlpp" [bitbucket] # If some of the repositories hosted on Bitbucket are private, you can use "app -# passwords" to access them. +# passwords" to access them. Also can be provided using the +# CGITIZE_BITBUCKET_APP_PASSWORD environment variable. #app_password = "XXX" # Some random repositories hosted on Bitbucket: |