From 2af64685d77320e0f4ebd8750ba20b7df25398c4 Mon Sep 17 00:00:00 2001 From: Nikurasu Date: Sat, 30 Apr 2022 22:41:25 +0200 Subject: [PATCH] Made a config.php.example --- .gitignore | 2 +- config.php.example | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 config.php.example diff --git a/.gitignore b/.gitignore index 2639b05..0d64f2d 100644 --- a/.gitignore +++ b/.gitignore @@ -10,5 +10,5 @@ npm-debug.log /build_production/ /build_staging/ /source/assets/ - !/source/assets/images/example.jpg +/config.php diff --git a/config.php.example b/config.php.example new file mode 100644 index 0000000..754a4f3 --- /dev/null +++ b/config.php.example @@ -0,0 +1,34 @@ + false, + 'baseUrl' => '', + 'title' => 'Socialtree', + 'author' => 'Nikurasu', + 'design' => 'main', + 'description' => 'A simple website to display links to social media accounts', + 'collections' => [], + 'imageName' => 'example.jpg', + 'links' => [ + [ + 'color' => 'youtube', + 'link' => 'https://youtube.com', + 'text' => 'Hier klicken', + 'platform' => 'youtube' + ], + [ + 'color' => 'youtube', + 'link' => 'https://twitter.com', + 'platform' => 'twitter' + ], + [ + 'link' => 'https://deviantart.com', + 'platform' => 'twitter', + 'text' => 'Ein Link' + ], + [ + 'link' => 'https://twitter.com', + 'platform' => 'mastodon' + ] + ], +];