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

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

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