add environment configs
This commit is contained in:
parent
37da8acf5a
commit
f8cc8aa45d
4 changed files with 81 additions and 5 deletions
|
@ -1,5 +0,0 @@
|
||||||
[module]
|
|
||||||
[module.hugoVersion]
|
|
||||||
extended = true
|
|
||||||
min = "0.140.0"
|
|
||||||
max = "0.140.2"
|
|
69
config/_default/config.yaml
Normal file
69
config/_default/config.yaml
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
module:
|
||||||
|
hugoVersion:
|
||||||
|
extended: true
|
||||||
|
min: "0.140.0"
|
||||||
|
max: "0.140.2"
|
||||||
|
|
||||||
|
baseURL: 'https://example.com/'
|
||||||
|
languageCode: en-gb
|
||||||
|
title: Omphaloskepsis 2
|
||||||
|
|
||||||
|
capitalizeListTitles: false
|
||||||
|
copyright: CC0
|
||||||
|
enableRobotsTXT: true
|
||||||
|
|
||||||
|
params:
|
||||||
|
author:
|
||||||
|
name: John Smith
|
||||||
|
email: admin@example.com
|
||||||
|
description:
|
||||||
|
reportIssueURL: '/Rumperuu/Omphaloskepsis-2/issues'
|
||||||
|
codeURL: 'https://code.bengoldsworthy.net'
|
||||||
|
feedIcon: /images/feed-icon.svg
|
||||||
|
keyFile:
|
||||||
|
mainSections:
|
||||||
|
- blog
|
||||||
|
- portfolio
|
||||||
|
- cv
|
||||||
|
pre_nominals:
|
||||||
|
post_nominals:
|
||||||
|
redact: skip
|
||||||
|
|
||||||
|
permalinks:
|
||||||
|
cv: /:sections/:slug
|
||||||
|
portfolio: /:sections/:slug
|
||||||
|
blog: /:sections/:slug
|
||||||
|
organisations: /cv/organisation/:slug
|
||||||
|
|
||||||
|
taxonomies:
|
||||||
|
category: categories
|
||||||
|
tag: tags
|
||||||
|
series: series
|
||||||
|
organisation: organisations
|
||||||
|
location: locations
|
||||||
|
soc: socs
|
||||||
|
# colleague: colleagues
|
||||||
|
skill: skills
|
||||||
|
area: areas
|
||||||
|
|
||||||
|
markup:
|
||||||
|
tableOfContents:
|
||||||
|
endLevel: 3
|
||||||
|
goldmark:
|
||||||
|
renderer:
|
||||||
|
unsafe: true
|
||||||
|
extensions:
|
||||||
|
passthrough:
|
||||||
|
delimiters:
|
||||||
|
block:
|
||||||
|
- - \[
|
||||||
|
- \]
|
||||||
|
- - $$
|
||||||
|
- $$
|
||||||
|
inline:
|
||||||
|
- - \(
|
||||||
|
- \)
|
||||||
|
enable: true
|
||||||
|
|
||||||
|
ignoreErrors:
|
||||||
|
- "missing-cite"
|
11
config/development/config.yaml
Normal file
11
config/development/config.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
baseURL: 'localhost:1313'
|
||||||
|
title: "Omphaloskepsis 2 [DEV]"
|
||||||
|
|
||||||
|
buildDrafts: true
|
||||||
|
buildFuture: true
|
||||||
|
|
||||||
|
params:
|
||||||
|
redact: black
|
||||||
|
|
||||||
|
taxonomies:
|
||||||
|
colleague: colleagues
|
1
config/production/config.yaml
Normal file
1
config/production/config.yaml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
publishDir: public
|
Loading…
Reference in a new issue