config.lua (2206B)
1 2 -- 3 -- Website Configuration File 4 -- 5 6 return { 7 domainname = "hugo.soucy.cc", 8 url = "https://hugo.soucy.cc", 9 urldev = "http://localhost:8181", 10 portdev = "8181", 11 baseurl = "http://localhost:8181", 12 language = "fr", 13 created = "2014-02-19", 14 15 metas = { 16 description = "Développeur Web frontend ayant plus de 10 ans d'expérience dans le milieu des technologies de l'information. Il habite dans le quartier Limoilou à Québec.", 17 keywords = "développeur frontend, développeur web front-end, intégrateur web, webdev, ville de Québec, Limoilou", 18 generator = "Ferron SSG", 19 }, 20 21 author = { 22 name = "Hugo Soucy", 23 nickname = "hs0ucy", 24 jobtitle = "Développeur Web frontend", 25 email = "hugo@soucy.cc", 26 phone = "581-996-6481", 27 locality ="Lévis", 28 region = "Qc", 29 uri = "https://hugo.soucy.cc/#hs", 30 relme = { 31 "https://hugo.soucy.cc/#hs", 32 "https://soucy.cc/", 33 "https://shr.soucy.cc/", 34 "https://bandcamp.com/hs0ucy", 35 "https://mastodon.sdf.org/@hs0ucy", 36 "https://pixelfed.social/hs0ucy", 37 "https://peertube.social/accounts/hs0ucy", 38 "https://micro.blog/hs0ucy", 39 "https://github.com/hs0ucy", 40 "https://gitlab.com/hs0ucy", 41 "https://bitbucket.org/hs0ucy/", 42 "https://stackoverflow.com/users/6556626/hs0ucy", 43 "https://www.openstreetmap.org/user/hs0ucy", 44 "sms:+15819966481", 45 }, 46 }, 47 48 -- hugosoucycc Dependencies 49 dependencies = { 50 modules = { 51 'pegasus', 52 'sass', 53 'watcher', 54 } 55 }, 56 57 paths = { 58 archetypes = "/archetypes", 59 content = "/content", 60 data = "/data", 61 html = "/public_html", 62 static = "/static/dst", 63 static_src = "/static/src", 64 templates = "/templates", 65 plugins = "/plugins", 66 }, 67 68 feedtypes = { 69 atom = { 70 name = "feed.atom", 71 extension = ".xml", 72 }, 73 rss2 = { 74 name = "feed.rss2", 75 extension = ".xml", 76 }, 77 } 78 }