-
-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #111: Fix caching issues while with tests #112
Fixes #111: Fix caching issues while with tests #112
Conversation
…svg badges ot Readme
…aded dependencies, Finished user controller, Fixed method override with querystring for ?_method=VERB, Fixed layout view path and rendering with extends
… template generators, Added pagination with express-paginate
Document gulp build ladjs#100
Fix copy errors
Update Readme.md
…n-watch Adds nodemon to `gulp watch`, & API tests
Adding jade reload to gulp watch, 0.2.25
- environment-specific db names; - random session secret and cookieParser (via chance.js); - enabled autoprefixer for less middleware;
it's useful in case of using `gulp watch`, if you want to get working sourcemaps current version of less-middleware has a few issues with sourcemaps
- add autoprefixer-core dependency for less-middleware
We usually use `nodemon app` for running application on dev server, so it causes liveReload connection error. That's why I moved it to local.js.
Some improvements
Added link to the wiki
…framework, beyond the user app generated
exports = module.exports = function(IoC) { | ||
return { | ||
getCachingHeadersFromSettings: function(settings){ | ||
var maxAge = parseInt(settings.staticServer.maxAge); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add the parseInt()
's second argument. var maxAge = parseInt(settings.staticServer.maxAge, 10);
Great PR! Thanks. Apart from my comments, to improve the code to match the style guide:
|
This reminds me the days of Java with the different conventions about leaving the bracket up or down. People went crazy about that. So funny. |
No description provided.