There was an error while loading. Please reload this page.
# 格式化 cargo fmt # 检测 cargo fmt -- --check
sqlx
cargo install sqlx-cli
source ../.env
sqlx database create
sqlite3 url_shortener.db < migrations/schema.sql
sqlite3 url_shortener.db ".tables;
cargo run
cargo build --release
创建短链
curl -X POST http://127.0.0.1:3000/shorten -d '{"url": "https://github.com/forkdo/shorturl"}' -H "Content-Type: application/json"
结果
{"short_url":"http://localhost:3000/3a088213"}