Skip to content

Commit

Permalink
Add reference to db name in config
Browse files Browse the repository at this point in the history
  • Loading branch information
UnbounDev committed Apr 23, 2015
1 parent b5a7282 commit 20a6e20
Showing 1 changed file with 16 additions and 14 deletions.
30 changes: 16 additions & 14 deletions config/config.template.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
module.exports = {
port: 8000,
//cdns: ['bootstrap', 'cdnjs', 'google', 'jsdelivr', 'jquery'],
cdns: ['bootstrap', 'cdnjs', 'google', 'jsdelivr'],
syncUrl: 'http://jsdelivrapi-sync.aws.af.cm/data/',
tasks: {
sync: {minute: 2}
},
maxcdn: {
alias: 'replace this',
key: 'replace this',
secret: 'replace this',
zoneId: 0 // replace with some zone id
},
github: '' // replace with github token
port: 8000,
//cdns: ['bootstrap', 'cdnjs', 'google', 'jsdelivr', 'jquery'],
cdns: ['bootstrap', 'cdnjs', 'google', 'jsdelivr'],
db: 'db',
//syncUrl: 'http://localhost:8000/data/',
syncUrl: 'http://jsdelivrapi-sync.aws.af.cm/data/',
tasks: {
sync: {minute: 5}
},
maxcdn: {
alias: 'replace this',
key: 'replace this',
secret: 'replace this',
zoneId: 0 // replace with some zone id
},
github: '' // replace with github token
};

0 comments on commit 20a6e20

Please sign in to comment.