From 3953debbd461759250518af3c196a485413b8887 Mon Sep 17 00:00:00 2001 From: Francisco Sandoval Date: Tue, 6 Jun 2023 02:30:27 -0400 Subject: [PATCH] se agrega nueva dependencia --- readme.md | 10 ++++++++++ requirements.txt | 5 +++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index e688cd0..b3c23e7 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,14 @@ +# Dependencias + +* **Django**: framework django +* **psycopg2-binary**: permite uso de base datos postgres +* **djangorestframework**: permite crear rest api json +* **coreapi**: genera documentación de rest api +* **python-decouple**: lee archivo .env para variables de ambiente +* **PyJWT**: permite generar json-web-token + + # Docker Para iniciar la aplicacion usando docker diff --git a/requirements.txt b/requirements.txt index 4115ec0..27b771a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ -django +Django psycopg2-binary djangorestframework coreapi -python-decouple \ No newline at end of file +python-decouple +PyJWT