I'm trying to accomplish this task:
require('./config/enviroment.js')(app, express);
However, I am unsure of the proper method...
I attempted:
require './config/routes.js'(app, routes) ->
Resulting in:
require('./config/routes.js'(app, routes)(function() {}));
Which I believe is not what I need.
I also tried:
require './config/enviroment.js'(app, express)
But received:
require('./config/enviroment.js'(app, express));