This repository showcases a demo of a small todo application combining Svelte as a frontend and Manifest as backend.
The backend consists in only a few lines of code:
name: My TODO App โ
entities:
Todo:
seedCount: 10
properties:
- title
- { name: completed, type: boolean }
npm install
# Launch backend
npm run manifest
# Launch frontend
npm run dev