Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if (currentEnv === "test") {
- // test
- environment.http_type = "http";
- environment.host = "localhost";
- environment.port = "8882";
- environment.db_host = "127.0.0.1";
- environment.db_port = "5432";
- environment.db_password = "Qwe12345";
- environment.db_user = "postgres";
- environment.db_dbname = "gisdb";
- environment.secret = secureSettings.jwtKey;
- environment.jwt_expires = 86400;
- environment.jwt_restore_expires = 300;
- environment.mailService = secureSettings.mailService;
- environment.mail_login = secureSettings.mailLogin;
- environment.mail_password = secureSettings.mailPassword;
- environment.bcrypt_salt_rounds = 10;
- environment.close_tasks_interval = 30000;
- environment.service_http_type = "http";
- environment.service_host = "test.domain.ru";
- }
Add Comment
Please, Sign In to add comment