diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 15:27:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 15:31:09 +0300 |
commit | 7673441ec04cba3123aceeb69c03e001a6af888c (patch) | |
tree | 77aca4040e5d1722a913f997e7706a8095fe9a64 /examples/cgitize.toml | |
parent | cgitize.config: allow passing secrets via environment (diff) | |
download | cgitize-7673441ec04cba3123aceeb69c03e001a6af888c.tar.gz cgitize-7673441ec04cba3123aceeb69c03e001a6af888c.zip |
factor various "repository" classes into Repo
Some other refactoring efforts are included.
Diffstat (limited to '')
-rw-r--r-- | examples/cgitize.toml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/cgitize.toml b/examples/cgitize.toml index 6046e36..fcf6b92 100644 --- a/examples/cgitize.toml +++ b/examples/cgitize.toml @@ -31,6 +31,10 @@ id = "bobfang1992/pytomlpp" # passwords" to access them. Also can be provided using the # CGITIZE_BITBUCKET_APP_PASSWORD environment variable. #app_password = "XXX" +# Contrary to GitHub, Bitbucket doesn't associate app passwords with a +# username, so you also need that (CGITIZE_BITBUCKET_USERNAME is the +# environment variable). +#username = "your-username" # Some random repositories hosted on Bitbucket: [bitbucket.repositories.cef] @@ -42,7 +46,7 @@ id = "berkeleylab/upc-runtime" # Some random repositories hosted on the web: [repositories.wintun] -id = "wintun" +name = "wintun" clone_url = "https://git.zx2c4.com/wintun" owner = "Jason A. Donenfeld" desc = "Layer 3 TUN Driver for Windows" |