Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 802 Bytes

readme.md

File metadata and controls

31 lines (24 loc) · 802 Bytes

Simple Todo App

Screenshot

Getting Started

  1. Install dependencies: npm install
  2. Create new database from scratch at Airsequel
  3. Rename created table from table-1 to todos
  4. Add / rename columns to achieve following schema:
    rowid INTEGER PRIMARY KEY,
    title TEXT NOT NULL,
    completed BOOLEAN
  5. Update database URL in index.js and main.jsx
  6. Start app:
    npm start
  7. Open http://localhost:8080/