Initial Commit
[ancientarts.git] / api / config.lua
1 return {
2 admin_email = "ken@kengrimes.com",
3 admin_password = "test",
4 hugo_directory = "/home/ken/proj/ancientarts/hugo",
5 host = 'localhost',
6 port = 3007,
7 hugo_config = {
8 baseURL = "https://krull.kengrimes.com",
9 languageCode = "en-us",
10 title = "Ancient Arts",
11 copyright = "2010-2018 Ancient Arts",
12 theme = "ancientarts",
13 relativeURLs = true,
14 pygmentsUseClasses = true,
15 outputs = {
16 home = {"HTML", "RSS", "JSON"},
17 section = {"HTML", "RSS", "JSON"},
18 page = {"HTML", "JSON"},
19 taxonomy = {"HTML", "RSS", "JSON"}
20 }
21 }
22 }