blob: a85daee38cd2c80bd57dcc563413b0f62b7a677a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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
|