Skip to main content

Helper functions to run Django and Flask applications in AWS Copilot/ECS.

Project description

DBT Copilot Python

A set of utility functions for running Django & Flask apps in AWS ECS via AWS Copilot.

Using dbt-copilot-python

Installation

pip install dbt-copilot-python

Usage

In settings.py:

  1. Add the ECS container IP to ALLOWED_HOSTS so that the Application Load Balancer (ALB) healthcheck will succeed:

    from dbt_copilot_python.network import setup_allowed_hosts
    
    ALLOWED_HOSTS = [...]
    
    ALLOWED_HOSTS = setup_allowed_hosts(ALLOWED_HOSTS)
    
  2. Configure the DATABASES setting from an RDS JSON object stored in SSM Parameter Store:

    from dbt-copilot-python import aws_database_config
    
    DATABASES = aws_database_config("ENVIRONMENT_KEY")
    

Contributing to dbt-copilot-python

Requirements

Install dependencies & pre-commit hooks

poetry install && poetry run pre-commit install

Run the tests

poetry run pytest

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dbt_copilot_python-0.1.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

dbt_copilot_python-0.1.1-py3-none-any.whl (4.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page