Archived
0

Init project

This commit is contained in:
2017-10-05 01:09:51 +03:00
parent 1a1e7997bf
commit 1d77fa6f58
5 changed files with 457 additions and 0 deletions

22
config.js Normal file
View File

@@ -0,0 +1,22 @@
/* --- IMPORTS -------------------------- */
require('dotenv').config();
/* --- SETUP ---------------------------- */
let web = {
host: process.env.W_HOST,
port: process.env.W_PORT
};
let maven = {
// example(win): /User/admin/.micro-m2
dir: process.env.MAVEN_DIR,
// example: mvn
url: process.env.MAVEN_ROOT_URL
};
/* --- EXPORTS -------------------------- */
module.exports.web = web;
module.exports.maven = maven;