https://github.com/gianbdev/api-collection-e
Django Api Rest [Token] Autentication
https://github.com/gianbdev/api-collection-e
django-rest-framework python3 token-authetication
Last synced: 9 months ago
JSON representation
Django Api Rest [Token] Autentication
- Host: GitHub
- URL: https://github.com/gianbdev/api-collection-e
- Owner: gianbdev
- Created: 2024-07-25T22:54:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-25T23:25:58.000Z (almost 2 years ago)
- Last Synced: 2025-04-10T01:47:42.640Z (about 1 year ago)
- Topics: django-rest-framework, python3, token-authetication
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SIMPLE REST API - DJANGO
On this project generated for IA, you can practice or introducing the another way how to create one REST API.
this rest api can be might hel you to build a simple login for your backend app.
## Characters
- POO.
- Authorization Tokens.
- venv
- Modules
## Installation
### Requisitos
- Requeriments list of your system (Python, Django, SQLite, etc.).
### Pasos para la Instalación
1. **Clone the Repository**
```bash
git clone https://github.com/tu_usuario/tu_repositorio.git
cd your_repository
```
2. **Create Virtual environment**
```bash
python -m venv myenv
source myenv/bin/activate # On Windows: myenv\Scripts\activate
```
3. **Install dependenies**
```bash
pip install -r requirements.txt
```
4. **Exec migrations**
```bash
python manage.py migrate
```
5. **Exec Localhost**
```bash
python manage.py runserver
```