/minderal

Your last note app

Primary LanguageVue

minderal

Web based mental database manager

Run web server

npm run dev

Build

npm run build

Notes

All docs migration

    // Database.js constructor()
this.connection.allDocs({ include_docs: true }).then((result) => {
  console.log(result)
  const migratedDocs = result.rows.filter(row => {
    return !row.id.includes('_design')
  })
    .map(row => {
      row.doc.content = row.doc.value
      return row.doc
    })
  this.connection.bulkDocs(migratedDocs).then(() => {
    console.log('Database migration complete')
  })
})