https://github.com/ngocdo1987/pet-actix-web
Actix web 2.0 with CRUD API
https://github.com/ngocdo1987/pet-actix-web
actix-web diesel rust rust-lang
Last synced: 7 months ago
JSON representation
Actix web 2.0 with CRUD API
- Host: GitHub
- URL: https://github.com/ngocdo1987/pet-actix-web
- Owner: ngocdo1987
- Created: 2023-06-22T13:13:49.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-02T11:02:54.000Z (over 2 years ago)
- Last Synced: 2025-02-14T15:44:47.380Z (8 months ago)
- Topics: actix-web, diesel, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Build & run
```bash
cargo build --release && cargo run --release
```## Generate new migration & migrate
```bash
diesel migration generate create_users_table
diesel migration run
```