An open API service indexing awesome lists of open source software.

https://github.com/naturalclar/rust-crud


https://github.com/naturalclar/rust-crud

Last synced: over 1 year ago
JSON representation

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
```