From fd4cb27121122d146b8cc3d55ad5aa9312c2cbe6 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Wed, 7 Apr 2021 11:49:12 +0300 Subject: Initial commit --- config.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 config.php (limited to 'config.php') diff --git a/config.php b/config.php new file mode 100644 index 0000000..7555eee --- /dev/null +++ b/config.php @@ -0,0 +1,14 @@ + array( + 'dsn' => 'pgsql:dbname=bugtracker;host=localhost;port=5432', + 'username' => 'red', + 'password' => 'red' + ) +); + +define("LIBRARY_PATH", realpath(dirname(__FILE__) . '/library')); +define("TEMPLATES_PATH", realpath(dirname(__FILE__) . '/templates')); + +?> -- cgit v1.2.1