sqlx/examples/sqlite/todos
Jonas Platte c5d43db312
Upgrade async runtime dependencies
Co-authored-by: Josh Toft <joshtoft@gmail.com>
Co-authored-by: Philip A Reimer <antreimer@gmail.com>
2021-01-20 21:50:45 -08:00
..
migrations update todo examples to 0.4 and use migrations 2020-07-18 05:43:16 -07:00
src Remove the Done trait 2021-01-12 14:37:44 +01:00
Cargo.toml Upgrade async runtime dependencies 2021-01-20 21:50:45 -08:00
README.md update todo examples to 0.4 and use migrations 2020-07-18 05:43:16 -07:00

TODOs Example

Setup

  1. Declare the database URL

    export DATABASE_URL="sqlite:todos.db"
    
  2. Create the database.

    $ sqlx db create
    
  3. Run sql migrations

    $ sqlx migrate run
    

Usage

Add a todo

cargo run -- add "todo description"

Complete a todo.

cargo run -- done <todo id>

List all todos

cargo run