This project aims to help the video upload process. It will create folders for each member and video based on their uuid.
- Install python (see version in pyproject.toml)
- Install poetry
poetry install
pre-commit install
uvicorn src.bss_web_file_server.main:app
poetry run isort . --check
poetry run black . --check
poetry run mypy
poetry run pylint src
poetry run isort .
poetry run black .
uvicorn src.bss_web_file_server.main:app --reload
poetry run pytest
docker build -t bss_web_file_server .
docker-compose up