From 03d45937d7edcb5efc01d0d583b6e6612916b0f8 Mon Sep 17 00:00:00 2001 From: Avior Date: Tue, 16 Apr 2019 16:34:30 +0200 Subject: [PATCH] Added config file for project --- config.jsonc | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 config.jsonc diff --git a/config.jsonc b/config.jsonc new file mode 100644 index 0000000..291febc --- /dev/null +++ b/config.jsonc @@ -0,0 +1,32 @@ +{ + "database": { + //driver to use with database + "driver": "pdo_mysql", + + // host of database + "host": "127.0.0.1", + + // database name + "dbname": "aptatio", + + // user to use + "user": "aptatio", + + //user's password + "password": "aptatio" + }, + "cache": { + + // enable/disable the cache + "enabled": "false", + + //path to cache folder + "path": "cache/", + + // driver to use with cache + "driver": "\\AdminPanel\\Cache\\FileCache", + "options": { + "ttl": null + } + } +}