aboutsummaryrefslogtreecommitdiff
path: root/constants.php
diff options
context:
space:
mode:
Diffstat (limited to 'constants.php')
-rw-r--r--constants.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/constants.php b/constants.php
new file mode 100644
index 0000000..267d6f7
--- /dev/null
+++ b/constants.php
@@ -0,0 +1,13 @@
+<?php
+
+$SERVER = 'localhost';
+$PORT = 3306;
+$USER = 'root';
+$PASSWORD = '';
+$DB_NAME = 'nwfh';
+
+$REPOSITORY = __DIR__;
+$ARCHIVES_DIR = $REPOSITORY . '/.archives';
+
+// ONLY FOR LINUX
+$MYSQL_UNIX_SOCKET = $REPOSITORY . '/.config/mysql/mysql.sock';