├── .env ├── .gitattributes ├── .vscode └── settings.json ├── Dockerfile ├── __pycache__ ├── celery_worker.cpython-39.pyc ├── db_conf.cpython-39.pyc ├── get_token.cpython-39.pyc ├── jwt_token.cpython-39.pyc ├── jwttoken.cpython-39.pyc ├── main.cpython-39.pyc ├── models.cpython-39.pyc ├── schemas.cpython-39.pyc └── token.cpython-39.pyc ├── alembic.ini ├── alembic ├── README ├── __pycache__ │ └── env.cpython-39.pyc ├── env.py ├── script.py.mako └── versions │ └── txt.txt ├── celery_worker.py ├── commands.md ├── db_conf.py ├── docker-compose.yml ├── jwt_token.py ├── main.py ├── models.py ├── requirements.txt └── schemas.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/Dockerfile -------------------------------------------------------------------------------- /__pycache__/celery_worker.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/celery_worker.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/db_conf.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/db_conf.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/get_token.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/get_token.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/jwt_token.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/jwt_token.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/jwttoken.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/jwttoken.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/main.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/main.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/schemas.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/schemas.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/token.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/__pycache__/token.cpython-39.pyc -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/alembic.ini -------------------------------------------------------------------------------- /alembic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /alembic/__pycache__/env.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/alembic/__pycache__/env.cpython-39.pyc -------------------------------------------------------------------------------- /alembic/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/alembic/env.py -------------------------------------------------------------------------------- /alembic/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/alembic/script.py.mako -------------------------------------------------------------------------------- /alembic/versions/txt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celery_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/celery_worker.py -------------------------------------------------------------------------------- /commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/commands.md -------------------------------------------------------------------------------- /db_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/db_conf.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jwt_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/jwt_token.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/requirements.txt -------------------------------------------------------------------------------- /schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryacademy/YT_FastAPI_Celery_Redis_Flower_Introduction/HEAD/schemas.py --------------------------------------------------------------------------------