From d2d2dfa9ac2854e0c1161fc11c991e6885e5c9c3 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 28 Sep 2019 12:22:21 +0200 Subject: [PATCH] Add config example --- .gitignore | 3 ++- config.example.json | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 config.example.json diff --git a/.gitignore b/.gitignore index 2a08ef7..8c4a8dc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,5 @@ public *.log content data.json -build \ No newline at end of file +build +config.json \ No newline at end of file diff --git a/config.example.json b/config.example.json new file mode 100644 index 0000000..ebe4b89 --- /dev/null +++ b/config.example.json @@ -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" + ] + } + \ No newline at end of file