https://github.com/naturalclar/rust-crud
https://github.com/naturalclar/rust-crud
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/naturalclar/rust-crud
- Owner: Naturalclar
- Created: 2024-04-17T00:37:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-17T00:37:54.000Z (over 2 years ago)
- Last Synced: 2025-02-16T09:27:11.181Z (over 1 year ago)
- Language: Rust
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# rust crud example
Reference: https://dev.to/francescoxx/rust-crud-rest-api-3n45
## Setup
````bash
Run postgresql
```bash
docker compose up -d db
````
Build rust app image
```bash
docker compose build
```
Run rust container
```bash
docker compose up rustapp
```