summaryrefslogtreecommitdiffstats
path: root/include/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/config.inc.php')
-rw-r--r--include/config.inc.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/config.inc.php b/include/config.inc.php
new file mode 100644
index 0000000..5c5a53c
--- /dev/null
+++ b/include/config.inc.php
@@ -0,0 +1,20 @@
+<?php
+
+/*
+ * General configuration
+ */
+
+$site_title = "BJack for #rautemusik (POC)";
+$db_host = "localhost";
+$db_name = "bjack";
+$db_user = "bjack";
+$db_pass = "bjack2";
+
+/*
+ * Don't touch this
+ */
+
+$site_path = dirname(__FILE__);
+$model_path = $site_path . "/models/";
+
+?>