Skip to content

Commit

Permalink
New general release
Browse files Browse the repository at this point in the history
  • Loading branch information
cprezzi committed May 1, 2019
1 parent 71df9ab commit b761b56
Show file tree
Hide file tree
Showing 39 changed files with 5,532 additions and 52 deletions.
Binary file added .package.json.swp
Binary file not shown.
168 changes: 116 additions & 52 deletions api/controllers/aasController.js

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions api/routes/aasRoutes.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ module.exports = function(app) {
app.route('/invoice_payed')
.get(aas.invoice_payed)

app.route('/invoice_delete')
.get(aas.invoice_delete)

app.route('/logs')
.get(aas.logs);

Expand Down
18 changes: 18 additions & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
var config = {};

config.wsPort = 3001;
config.httpPort = 3002;
config.httpsPort = 3003;
config.serverVersion = '0.1.0';
config.apiVersion = '0.1.0';

config.dbHost = '192.168.1.5';
config.dbPort = '3307';
config.dbName = 'flauth';
config.dbUser = 'flauth';
config.dbPass = 'FabLab';

config.verboseLevel = 1;
config.logLevel = 0;

module.exports = config;
Loading

0 comments on commit b761b56

Please sign in to comment.