blob: bc815933bfd22eba15ae6586f90ba8e4404917b2 [file] [log] [blame]
#!/usr/bin/env node
// deletes the old animaldb, creates a new, fresh one,
// with conflicts for the zebra doc
const url = 'http://localhost:5984/';
createAnimalDb = require('../test/create-animal-db.js');
createAnimalDb(url, () => {
console.log('created :)');
});