Skip to content

Commit

Permalink
Update baseURL
Browse files Browse the repository at this point in the history
  • Loading branch information
bdfinst committed Jul 5, 2023
1 parent 3da87dd commit a000f9f
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 20 deletions.
69 changes: 69 additions & 0 deletions hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
baseURL = 'https://minimumcd.org/minimumcd/'
title = 'MinimumCD.org'
languageCode = "en-US"
defaultContentLanguage = "en"

theme = "docport"

pygmentsCodeFences = true
pygmentsStyle = "monokai"

defaultContentLanguageInSubdir= false
enableMissingTranslationPlaceholders = false

googleanalytics = "G-KVLFMQXEF1"

disableKinds = ["taxonomy", "taxonomyTerm", "category", "RSS"]

# Keep this as is
[outputs]
home = [ "HTML", "RSS", "JSON"]

# Site params
[params]
ordersectionsby = "weight" # ordersectionsby = "title"
color_main = "#477bbf"
color_second = "#b30000"
disableSearch = false # default is false
disableNavChevron = false # set true to hide next/prev chevron, default is false
menushortcutsnewtab = false # set true to open shortcuts links to a new tab/window

editURL = "https://github.com/Minimum-CD/cd-manifesto/blob/master/content/"
enableGitInfo = true
logo = '/images/minimumCD-logo-hex.png'


[mediaTypes]
[mediaTypes."application/netlifyconfig"]
suffixes = ["yml"]

[outputFormats]
[outputFormats.netlifyyaml]
mediaType = "application/netlifyconfig"
isPlainText = true
isHTML = false
notAlternative = true

[markup.goldmark.renderer]
unsafe = true

# Code highlight configuration
[markup.highlight]
codeFences = true
guessSyntax = true
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 2

[[menu.shortcuts]]
name = "Github"
identifier = "ds"
url = "https://github.com/Minimum-CD/cd-manifesto"
weight = 10

[create-footer-md]
other = "Licensed MIT"
39 changes: 19 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,6 @@
"name": "minimumcd",
"version": "1.0.0",
"description": "Minimum Viable CD",
"main": "hugo serve",
"scripts": {
"build": "hugo",
"lint": "markdownlint ./content/**/*.md",
"lint:fix": "markdownlint -f ./content/**/*.md",
"prepare": "husky install",
"test": "npm run lint; npm run link-check",
"link-check": "start-server-and-test start http://localhost:1313 'blc http://localhost:1313 --recursive --ordered --exclude-external'",
"start": "hugo serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Minimum-CD/cd-manifesto.git"
},
"keywords": [
"ci",
"cd",
Expand All @@ -28,16 +14,29 @@
"trunk-based",
"trunk"
],
"author": "MinimumCD.org",
"license": "CC-BY-4.0",
"homepage": "https://minimumcd.org/minimumcd/",
"bugs": {
"url": "https://github.com/Minimum-CD/cd-manifesto/issues"
},
"homepage": "https://minimumcd.org/minimumcd/",
"repository": {
"type": "git",
"url": "git+https://github.com/Minimum-CD/cd-manifesto.git"
},
"license": "CC-BY-4.0",
"author": "MinimumCD.org",
"main": "hugo serve",
"scripts": {
"build": "hugo",
"link-check": "npm run build && linkinator -r public/ -s linkedin",
"lint": "markdownlint ./content/**/*.md",
"lint:fix": "markdownlint -f ./content/**/*.md",
"prepare": "husky install",
"start": "hugo serve",
"test": "npm run lint"
},
"devDependencies": {
"husky": "^7.0.4",
"markdownlint-cli": "^0.31.1",
"start-server-and-test": "^1.14.0",
"broken-link-checker": "^0.7.8"
"linkinator": "^5.0.1",
"markdownlint-cli": "^0.31.1"
}
}

0 comments on commit a000f9f

Please sign in to comment.