mirror of
				https://github.com/launchbadge/sqlx.git
				synced 2025-11-03 23:12:47 +00:00 
			
		
		
		
	TODOs Example
Setup
- 
Declare the database URL
export DATABASE_URL="sqlite:todos.db" - 
Create the database.
$ sqlx db create - 
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