This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
trev/nodejs/config.js.example

12 lines
275 B
Plaintext
Raw Normal View History

2016-02-01 15:34:05 +01:00
var config = {};
config.mysql_host = 'localhost';
config.mysql_user = 'user';
config.mysql_secret = 'password';
config.mysql_database = 'autohome';
2016-02-23 17:47:19 +01:00
config.crypto_secret = 'crypto secret key';
2016-02-25 13:00:00 +01:00
config.debug = false;
2016-02-01 15:34:05 +01:00
module.exports = config;