Move code mirror dirs into dedicated code mirror folder, ignore it, and have node serve it statically.

This commit is contained in:
jkaplon 2016-02-18 17:34:25 -05:00
parent b7784918b8
commit 29d73bfc8d
2 changed files with 5 additions and 6 deletions

4
.gitignore vendored
View File

@ -1,6 +1,4 @@
/keymap/*
/lib/*
/mode/*
/codemirror/*
/note-data/*
index.html
/logs/*

View File

@ -15,9 +15,10 @@ app.engine('hbs', hbs.express4({
}));
app.set('view engine', 'hbs');
app.set('views', __dirname + '/views');
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('/mode', express.static('mode'));
//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('/mode', express.static('mode'));
app.use(express.static('codemirror'));
var notePath = __dirname + '/note-data/allNotes.txt';