Disabling DB change and seed data re population - lan-solo-capstone/freeshare GitHub Wiki

please update the index.js : server/index.js

Between - line 144 and 122

const syncDb = () => db.sync({force: false}). <<<< change to force:true to avoid complete DB rebuild/lose data

async function bootApp() { await sessionStore.sync() await syncDb() //await seed(). <<<----- disabling seeddata action await createApp() await startListening() }