From 3ae5bce930332d9b49ad5ea2c47d85ecf8acd5a0 Mon Sep 17 00:00:00 2001 From: Jonas Leder <jonas@jonasled.de> Date: Tue, 13 Oct 2020 17:12:41 +0200 Subject: [PATCH] added example config --- .idea/workspace.xml | 6 +++--- internal/config.example.php | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) create mode 100644 internal/config.example.php diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 090b80a..a38eb8d 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -71,7 +71,7 @@ <workItem from="1601888004249" duration="2583000" /> <workItem from="1602322762276" duration="291000" /> <workItem from="1602599132329" duration="313000" /> - <workItem from="1602599911536" duration="1904000" /> + <workItem from="1602599911536" duration="2008000" /> </task> <servers /> </component> @@ -115,10 +115,10 @@ <screen x="0" y="0" width="1920" height="1160" /> </state> <state x="740" y="335" key="FileChooserDialogImpl/0.0.1920.1160/-1920.0.1920.1040@0.0.1920.1160" timestamp="1601739374278" /> - <state x="794" y="503" key="NewPhpFileDialog" timestamp="1601888090691"> + <state x="794" y="503" key="NewPhpFileDialog" timestamp="1602601925462"> <screen x="0" y="0" width="1920" height="1160" /> </state> - <state x="794" y="503" key="NewPhpFileDialog/0.0.1920.1160/-1920.0.1920.1040@0.0.1920.1160" timestamp="1601888090691" /> + <state x="794" y="503" key="NewPhpFileDialog/0.0.1920.1160/-1920.0.1920.1040@0.0.1920.1160" timestamp="1602601925462" /> <state x="461" y="225" key="SettingsEditor" timestamp="1601754679273"> <screen x="0" y="0" width="1920" height="1160" /> </state> diff --git a/internal/config.example.php b/internal/config.example.php new file mode 100644 index 0000000..af49604 --- /dev/null +++ b/internal/config.example.php @@ -0,0 +1,8 @@ +<?php +$mysqlServer = "127.0.0.1"; +$mysqlUser = ""; +$mysqlPassword = ""; +$mysqlDatabase = ""; + +$footerMaxPost = 5; +$homeMaxPost = 3; \ No newline at end of file -- GitLab