Added config

This commit is contained in:
Phil Zhitnikov 2019-11-19 04:21:45 +03:00
parent 574a4cc789
commit 274ff0f080

13
src/config.js Normal file
View File

@ -0,0 +1,13 @@
exports.DEV = {
host: "http://127.0.0.1:8080/index.php/",
adminUsername: "admin",
adminPassword: "admin"
};
exports.PRODUCTION = {
host: "http://PRODUCTION-SERVER.ORG/index.php/",
adminUsername: "admin",
adminPassword: "admin",
gzip: true
};