Files
Scanning the repository...
Last update 5 years 3 months
by Charles Julian Knight
| Files_oldpresentation | |
|---|---|
| .. | |
| src | |
| .editorconfig | |
| .gitignore | |
| .jshintrc | |
| .travis.yml | |
| Gruntfile.js | |
| app.js | |
| bower.json | |
| couchapp.json | |
| other.md | |
| package.json | |
| pdf.sh | |
| rasterize.js |
app.jsvar couchapp = require('couchapp'), path = require('path'); ddoc = { _id: '_design/synth', rewrites: [{ from: '', to: '/index.html' },{ from: '*', to: '/*' }], views: {}, lists: {}, shows: {} }; couchapp.loadAttachments(ddoc, path.join(__dirname, 'dist')); module.exports = ddoc;