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

https://github.com/rdquispe/backend-flask


https://github.com/rdquispe/backend-flask

backend docker flask mvc postgres python

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Backend Flask

## Migrations
```shell
$ python models.py
```

## Endpoints
```shell
curl --location --request POST 'http://localhost:9000/user' \
--header 'Content-Type: application/json' \
--data-raw '{
"user_name": "rodrigo",
"password": "password",
"email": "some@mail.com",
"phone": "123456789"
}'
```