-
Notifications
You must be signed in to change notification settings - Fork 4
/
default.toml
37 lines (33 loc) · 1.4 KB
/
default.toml
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
35
36
37
# Files is related to any URL or internal files Hyde will use
[files]
# The location of the markdown files relative to the root of the repo
docs_path = "docs/"
# The location of the assets files relative to the root of the repo
asset_path = "assets/"
# The path where the repository will be pulled and used
repo_path = "repo/"
# The URL of the jekyll repository to interface with
repo_url = "https://github.com/r-Techsupport/rTS_Wiki.git"
# Discord is related to discord specific information to pass to Hyde.
[discord]
# The Discord username of the admin account
admin_username = "username"
# OAuth for Discord and GitHub, handles passing all relevant information to clients in Hyde
[oauth.discord]
# Put your Discord OAuth2 client ID here
client_id = "123"
# Discord Application Secret will go here. DO NOT Share or commit to any source control.
secret = "_1a2B3c"
# URL of the application scope you have generated
url = "https://example.com/oauth2"
# The OAuth2 token URL (leave untouched if using discord)
token_url = "https://discord.com/api/oauth2/token"
[oauth.github]
# Github Application Client ID
client_id = "aBc123DEf456"
# Database for anything database related Hyde will utilise.
[database]
# This is used for the sqlx tooling/compile checking, but is not directly used
# in the code right now. This should be set to the path of the database relative
# to the backend folder
url = "sqlite://../hyde-data/data.db"