mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-14 00:07:05 +00:00
.. | ||
src | ||
Cargo.toml | ||
README.md | ||
schema.sql |
Real World SQLx
Usage
Declare the database URL.
export DATABASE_URL="postgres://postgres@localhost/realworld"
Create the database.
createdb -U postgres realworld
Load the database schema.
psql -d "$DATABASE_URL" -f ./schema.sql
Run.
cargo run