https://github.com/luizcalaca/django-api
Python + Django Rest Framework
https://github.com/luizcalaca/django-api
api api-rest automated-testing ci-cd django django-framework django-rest-framework github-actions pytest-django python python3 rest-api
Last synced: about 1 month ago
JSON representation
Python + Django Rest Framework
- Host: GitHub
- URL: https://github.com/luizcalaca/django-api
- Owner: luizcalaca
- Created: 2023-12-17T02:22:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-19T19:13:44.000Z (over 2 years ago)
- Last Synced: 2025-01-25T16:08:34.754Z (over 1 year ago)
- Topics: api, api-rest, automated-testing, ci-cd, django, django-framework, django-rest-framework, github-actions, pytest-django, python, python3, rest-api
- Language: Python
- Homepage:
- Size: 16.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Python + Django
### Commands
#### Configure the enviroment
```
python -m venv env
source env/bin/activate
pip install django
```
#### Seeds database
```
python3 manage.py seed_db
```
#### Automated tests with pytest
```
cd backend
pytest
```
#### Importants
```
django-admin startproject core .
django-admin startapp app
python3 manage.py runserver
```
```
python3 manage.py migrate
python3 manage.py makemigrations
python3 manage.py createsuperuser
```
```
python3 manage.py migrate --run-syncdb
python3 manage.py makemigrations
```
```
pip freeze > requirements.txt
```
## Troubleshooting
```
Delete the rows related to your application from database:
DELETE FROM django_migrations WHERE app='';
Delete your app's migration folder
Finally:
./manage.py makemigrations
./manage.py migrate
Done. Table created.
```
## HTTP requests
### Registration
```
http://127.0.0.1:8000/api/registration/ POST
{
"username": "luiz.calaca2",
"password1": "!@#$!@#$",
"password2": "!@#$!@#$",
"is_host": true
}
```
### Login
```
http://127.0.0.1:8000/api/login/ POST
{
"username": "luiz.calaca2",
"password": "!@#$!@#$"
}
```
### Bookings
```
http://127.0.0.1:8000/api/bookings/ GET
headers {Authorization: Token d93792c5asdfasdfe744c414e2707}
```
### Properties
```
http://127.0.0.1:8000/api/properties/2 GET
headers {Authorization: Token d93792c5asdfasdfe744c414e2707}
```