-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0544b4c
commit 2c34156
Showing
5 changed files
with
9 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
bin/ | ||
tmp/ | ||
.DS_Store | ||
.DS_Store | ||
config.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +0,0 @@ | ||
log: | ||
# Color log output | ||
color: true | ||
# Log as json | ||
json: false | ||
# Log level (INFO, DEBUG, TRACE, WARN) | ||
level: DEBUG | ||
server: | ||
# Disable web server | ||
disabled: false | ||
# Enable basic http auth | ||
auth: | ||
enabled: false | ||
# Credentials for basic auth | ||
accounts: | ||
- login: user2 | ||
password: bar | ||
- login: user1 | ||
password: foo | ||
# Web server address | ||
addr: ":3080" | ||
# Navbar brand string | ||
brand: "smolgit" | ||
ssh: | ||
# SSH server address | ||
addr: ":3081" | ||
git: | ||
# Folder to save git repositories | ||
path: /tmp/smolgit | ||
# Base for clone string formating | ||
# (e.g. ssh://[email protected]/myuser/project.git) | ||
base: "[email protected]" | ||
users: | ||
# User name used for folder in git.path | ||
- name: "bob" | ||
# Permissions, wildcard or regex | ||
# User to check access for other repositories | ||
# '*' - access for all repositories | ||
# 'admin' - access for admin's repositories | ||
# '(admin|billy)' - access for admin's and billy's repositories | ||
permissions: "*" | ||
keys: | ||
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQCq9rD9b8tYyuSLsTECHCn... [email protected] | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters