Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 329 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 329 Bytes

Connected TODOs Example

Setup

  1. Declare the database URL

    export DATABASE_URL="postgres://postgres:password@localhost/connected_todos"
    
  2. Create the database.

    $ sqlx db create
    
  3. Run sql migrations

    $ sqlx migrate run
    

Usage

Check for errors

cargo check