Move code mirror dirs into dedicated code mirror folder, ignore it, and have node serve it statically.
This commit is contained in:
parent
b7784918b8
commit
29d73bfc8d
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,6 +1,4 @@
|
|||||||
/keymap/*
|
/codemirror/*
|
||||||
/lib/*
|
|
||||||
/mode/*
|
|
||||||
/note-data/*
|
/note-data/*
|
||||||
index.html
|
index.html
|
||||||
/logs/*
|
/logs/*
|
||||||
|
@ -15,9 +15,10 @@ app.engine('hbs', hbs.express4({
|
|||||||
}));
|
}));
|
||||||
app.set('view engine', 'hbs');
|
app.set('view engine', 'hbs');
|
||||||
app.set('views', __dirname + '/views');
|
app.set('views', __dirname + '/views');
|
||||||
app.use('/lib', express.static('lib')); // these 3 seem hacky, but doing it here instead of view.
|
//app.use('/lib', express.static('lib')); // these 3 seem hacky, but doing it here instead of view.
|
||||||
app.use('/keymap', express.static('keymap'));
|
//app.use('/keymap', express.static('keymap'));
|
||||||
app.use('/mode', express.static('mode'));
|
//app.use('/mode', express.static('mode'));
|
||||||
|
app.use(express.static('codemirror'));
|
||||||
|
|
||||||
var notePath = __dirname + '/note-data/allNotes.txt';
|
var notePath = __dirname + '/note-data/allNotes.txt';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user