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