mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
parent
962976c204
commit
e0610bc1be
2 changed files with 13 additions and 15 deletions
16
server.js
16
server.js
|
@ -60,21 +60,19 @@ if (config.recompressStaticAssets) {
|
|||
}
|
||||
|
||||
// Send the static documents into the preferred store, skipping expirations
|
||||
var path, data;
|
||||
for (var name in config.documents) {
|
||||
var path = config.documents[name];
|
||||
fs.readFile(path, 'utf8', function(err, data) {
|
||||
if (data && !err) {
|
||||
path = config.documents[name];
|
||||
data = fs.readFileSync(path, 'utf8');
|
||||
winston.info('loading static document', { name: name, path: path });
|
||||
if (data) {
|
||||
preferredStore.set(name, data, function(cb) {
|
||||
winston.info('loaded static document', { name: name, path: path });
|
||||
winston.debug('loaded static document', { success: cb });
|
||||
}, true);
|
||||
}
|
||||
else {
|
||||
winston.warn(
|
||||
'failed to load static document',
|
||||
{ name: name, path: path }
|
||||
);
|
||||
winston.warn('failed to load static document', { name: name, path: path });
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Pick up a key generator
|
||||
|
|
2
static/application.min.js
vendored
2
static/application.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue