Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bsperezb/django-api-1
Practice django API to practice.
https://github.com/bsperezb/django-api-1
celery django reids sqlite
Last synced: 6 days ago
JSON representation
Practice django API to practice.
- Host: GitHub
- URL: https://github.com/bsperezb/django-api-1
- Owner: bsperezb
- Created: 2021-07-11T15:12:04.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-18T07:01:05.000Z (over 3 years ago)
- Last Synced: 2024-11-14T08:45:36.963Z (about 2 months ago)
- Topics: celery, django, reids, sqlite
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
My First CRUD DjangoRest
==============================This is my first API developed in DjangoRest Framework
### Quick setup
> The next steps assume that Python 3.xx is already installed
```bash
python3 -m venv env
```
2 - Activate the environmentOn linux
```bash
source env/bin/activate
```On Windows
```bash
env/bin/activate.bat
```3 - Install the project basic dependencies
> Make sure you are inside the root project directory before executing the next commands.
>
> The root project directory is the directory that contains the `manage.py` fileOn Linux and Mac
```bash
pip3 install -r requirements.txt
```On Windows
```bash
pip install -r requirements.txt
```
4 - The Project has a Token Authenticatiosn, login a userIn admin section you'll have to enter:
>User = brayan
>password = 20091994The API is ready to consume. The urls is located on "__urls.py__" and "__proyecto2\urls.py__" .