diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-16 17:47:37 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-10-16 17:47:41 +0300 |
commit | c0e5e01923f3a65b6462114e80a2b326137de56e (patch) | |
tree | 59f7e73ceeec4d792577d6ac747d4d2bdf7be2c5 /examples | |
parent | README: update (diff) | |
download | cgitize-c0e5e01923f3a65b6462114e80a2b326137de56e.tar.gz cgitize-c0e5e01923f3a65b6462114e80a2b326137de56e.zip |
examples/cgitize.toml: shorten redundant comments
Diffstat (limited to 'examples')
-rw-r--r-- | examples/cgitize.toml | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/examples/cgitize.toml b/examples/cgitize.toml index 184dff6..9260974 100644 --- a/examples/cgitize.toml +++ b/examples/cgitize.toml @@ -36,10 +36,9 @@ id = "bobfang1992/pytomlpp" # You can put repositories in a subdirectory: dir = "python" +# Bitbucket settings are similar to those for GitHub. [bitbucket] -# If some of the repositories hosted on Bitbucket are private (or if you hit -# the request rate limit), use "app passwords". Also can be provided using the -# CGITIZE_BITBUCKET_APP_PASSWORD environment variable. +# The environment variable is CGITIZE_BITBUCKET_APP_PASSWORD. #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 @@ -48,40 +47,29 @@ dir = "python" [bitbucket.users.me] name = "egor-tensin" -# To avoid directory name clashes with other repositories, you can specify a -# subdirectory to put that user's repositories to. dir = "bitbucket-dir" -# Repositories to skip: #skip = ["repo1", "repo2"] -# Some random repositories hosted on Bitbucket: [bitbucket.repositories.cef] id = "chromiumembedded/cef" -# You can put repositories in a subdirectory: dir = "chromiumembedded" [bitbucket.repositories.upc-runtime] id = "berkeleylab/upc-runtime" +# Gitlab settings are similar to those for GitHub. [gitlab] -# If some of the repositories hosted on Gitlab are private (or if you hit the -# request rate limit), use "access tokens". Also can be provided using the -# CGITIZE_GITLAB_ACCESS_TOKEN environment variable. +# The environment variable is CGITIZE_GITLAB_ACCESS_TOKEN. #access_token = "XXX" [gitlab.users.me] name = "egor-tensin" -# To avoid directory name clashes with other repositories, you can specify a -# subdirectory to put that user's repositories to. dir = "gitlab-dir" -# Repositories to skip: #skip = ["repo1", "repo2"] -# Some random repositories hosted on Gitlab: [gitlab.repositories.inkscape] id = "inkscape/inkscape" [gitlab.repositories.gitter] id = "gitterHQ/webapp" -# You can put repositories in a subdirectory: dir = "gitterHQ" [repositories] |