-
Notifications
You must be signed in to change notification settings - Fork 22
/
urchin_config.toml
41 lines (30 loc) · 1 KB
/
urchin_config.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
38
39
40
41
# Address to the MariaDB database
database_address = "localhost"
# User to access datbaase
database_user = "urchin"
# Password for the database user
database_password = "urchinpw"
# port
database_port = 3306
# name of database where urchin's
# migrations was installed
database_name = "urchin"
# port to run the webserver on
webserver_port = 8080
# port to run the admin app on
admin_port = 8081
# Directory to use for storing uploaded images.
image_dir = "./images"
# Enable/disable endpoint cache
cache_enabled = true
# Recaptcha settings
recaptcha_sitekey = "6LecCewpAAAAAK7QS2SwuyCIDzwlyXMs4J1Z5LBq"
recaptcha_secret = "6LecCewpAAAAAPP8Aaxh6jWaDE1xG_MBQa1OOs8f"
[navbar]
links = [
{ name = "Home", href = "/", title = "Homepage" },
{ name = "About", href = "/about", title = "About page" },
{ name = "Services", href = "/services", title = "Services page" },
{ name = "Images", href = "/images", title = "Images page" },
{ name = "Contact", href = "/contact", title = "Contacts page" },
]