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
- Host: GitHub
- URL: https://github.com/rdquispe/backend-flask
- Owner: rdquispe
- Created: 2020-02-20T19:40:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-16T00:22:06.000Z (over 1 year ago)
- Last Synced: 2025-06-27T14:07:32.320Z (about 1 year ago)
- Topics: backend, docker, flask, mvc, postgres, python
- Language: Python
- Homepage:
- Size: 118 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}'
```