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