https://github.com/rookiecol/intranet-backend
Backend built with FastAPI to create users and authenticate them with JWT, as well as to create tasks associated with each user.
https://github.com/rookiecol/intranet-backend
Last synced: 9 months ago
JSON representation
Backend built with FastAPI to create users and authenticate them with JWT, as well as to create tasks associated with each user.
- Host: GitHub
- URL: https://github.com/rookiecol/intranet-backend
- Owner: RookieCol
- Created: 2023-04-20T17:26:40.000Z (about 3 years ago)
- Default Branch: develop
- Last Pushed: 2023-04-26T15:48:01.000Z (about 3 years ago)
- Last Synced: 2025-03-15T08:30:44.613Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Intranet SOUTA
Este proyecto es una API de ejemplo desarrollada en Python y FastAPI que utiliza una base de datos SQLite.
## Instalación
1. Clona este repositorio en tu máquina local:
`git clone https://github.com/RookieCol/intranet-backend.git`
2. Instala las dependencias del proyecto:
cd intranet-backend
pip install -r requirements.txt
3. Crear la base de datos
Una vez en la raiz del proyecto se debe crear la base de datos de desarollo siguiendo los siguentes comandos:
python3
import services
services.create_database ()
4. Inicia la aplicación:
`uvicorn main:app --reload`