diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 10:16:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-07-31 10:17:44 +0300 |
commit | 9181b3a021acc7585cb6f9f20da6accfce0015e0 (patch) | |
tree | 0fcb4d5a99be02ac7a934817491f50d0d32d757d /examples/cgitize.conf | |
parent | add some unit tests (diff) | |
download | cgitize-9181b3a021acc7585cb6f9f20da6accfce0015e0.tar.gz cgitize-9181b3a021acc7585cb6f9f20da6accfce0015e0.zip |
merge my_repos.py to the config
The config is also in the TOML format now. It's a bit messy for the
moment, but I'll fix it.
Diffstat (limited to 'examples/cgitize.conf')
-rw-r--r-- | examples/cgitize.conf | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/examples/cgitize.conf b/examples/cgitize.conf deleted file mode 100644 index a85daee..0000000 --- a/examples/cgitize.conf +++ /dev/null @@ -1,34 +0,0 @@ -# All settings are optional. - -[DEFAULT] - -# /etc/cgitize/my_repos.py by default. -my_repos = /path/to/my_repos.py - -# /var/tmp/cgitize/output by default. -output = /path/to/output/ - -# URL to clone from the output directory. {repo_id} is replaced by the -# repository ID (in the NAME or SECTION/NAME format). -clone_url = http://example.com:8080/git/{repo_id} - -# Clones via SSH by default. -ssh = True - -owner = Your Name - -[GITHUB] - -username = your-username - -# If some of the repositories hosted on GitHub are private, you can use -# "personal access tokens" to access them. -access_token = XXX - -[BITBUCKET] - -username = your-username - -# If some of the repositories hosted on Bitbucket are private, you can use "app -# passwords" to access them. -app_password = XXX |