This is a simple to-do app built with the following technologies
- Rust
- Prisma
- GraphQL
- Next.js
- Typescript
- TailwindCSS
- Rust
- Node.js
- Yarn
- Create a SQLite database
touch prisma/dev.db
- Generate the prisma client.
cargo prisma generate
- Push prisma schema to database
cargo prisma db push
- Install dependencies
yarn install
- Run the API
cargo run --bin api
- Run the front-end app
yarn dev