├── .gitignore ├── README.md ├── api ├── Dockerfile ├── __init__.py ├── crud.py ├── database.py ├── logs │ └── celery.log ├── main.py ├── models.py ├── requirements.txt ├── schemas.py ├── tasks.py └── tests │ ├── __init__.py │ └── tests.py ├── docker-compose.yml └── img └── Summary.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/Dockerfile -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/crud.py -------------------------------------------------------------------------------- /api/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/database.py -------------------------------------------------------------------------------- /api/logs/celery.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/main.py -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/models.py -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/requirements.txt -------------------------------------------------------------------------------- /api/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/schemas.py -------------------------------------------------------------------------------- /api/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/tasks.py -------------------------------------------------------------------------------- /api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/api/tests/tests.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/Summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alperencubuk/fastapi-celery-redis-postgres-docker-rest-api/HEAD/img/Summary.png --------------------------------------------------------------------------------