git clone https://github.com/avyayjain/video_management.git
pip install -r requirements.txt
alembic revision --autogenerate -m "initial migration"
alembic upgrade head
DATABASE_URL
DATABASE_USER
DATABASE_PASSWORD
DATABASE_DB
SECRET_KEY
ALGORITHM
ACCESS_TOKEN_EXPIRE_MINUTES
python3 -m uvicorn main:app --host 0.0.0.0 --port 8000
fastapi dev main.py
docker build -t video_manegement .
docker run -d -p 8000:8000 video_manegement
https://www.postman.com/technical-saganist-64650375/workspace/projects/collection/23939640-e40ae493-90df-4a04-afe0-04e326b16cd6?action=share&creator=23939640
http://localhost:8000/docs
pytest -v