├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── __init__.py ├── app.py ├── routes.py └── tasks.py ├── celery_workers.yaml ├── complete_flow_load_test.py ├── flask_server.yaml ├── generate_flow_load_test.py ├── keda.yaml ├── main.py ├── postgres.yaml ├── rabbitmq.yaml └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/app/app.py -------------------------------------------------------------------------------- /app/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/app/routes.py -------------------------------------------------------------------------------- /app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/app/tasks.py -------------------------------------------------------------------------------- /celery_workers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/celery_workers.yaml -------------------------------------------------------------------------------- /complete_flow_load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/complete_flow_load_test.py -------------------------------------------------------------------------------- /flask_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/flask_server.yaml -------------------------------------------------------------------------------- /generate_flow_load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/generate_flow_load_test.py -------------------------------------------------------------------------------- /keda.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/keda.yaml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/main.py -------------------------------------------------------------------------------- /postgres.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/postgres.yaml -------------------------------------------------------------------------------- /rabbitmq.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/rabbitmq.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yolossn/flask-celery-microservice/HEAD/requirements.txt --------------------------------------------------------------------------------