Add config example

This commit is contained in:
LordMathis 2019-09-28 12:22:21 +02:00
parent dcfba17a88
commit d2d2dfa9ac
No known key found for this signature in database
GPG Key ID: 575849FD91CE470C
2 changed files with 19 additions and 1 deletions

3
.gitignore vendored
View File

@ -3,4 +3,5 @@ public
*.log
content
data.json
build
build
config.json

17
config.example.json Normal file
View File

@ -0,0 +1,17 @@
{
"title": "John Doe - Portfolio",
"name": "John Doe",
"email": "john.doe@example.com",
"social": {
"github": "github_url",
"twitter": "twitter_url",
"linkedin": "linkedin_url"
},
"contentPath": "./content",
"renderPath": "./renders",
"dataPath": "./src/utils/data.json",
"non-content-files": [
"about.md", "resume.md"
]
}