summaryrefslogtreecommitdiffstats
path: root/include/config.inc.php
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2012-03-13 11:36:26 +0100
committerStefan Ritter <xeno@thehappy.de>2012-03-13 11:36:26 +0100
commit600316a94a7e40c5fef364d6f98abc3e509131ad (patch)
tree4d35ea4627d32bf1c1d6acfdb4799eae174e54a2 /include/config.inc.php
Initial commit
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/";
+
+?>