Skip to main content

Automated tasks after-deploy for Django.

Project description

After deploy helps you to create and manage automated deploy tasks in your Django application. Inspired by Rails after_party

Quick start

  1. Install the package using pip by running:

    pip install django-after-deploy
  2. Add “after_deploy” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'after_deploy',
    ]
  3. Now after_deploy commands are available, use install flag:

    python manage.py after_deploy --install
  4. Run python manage.py -g my_first_task to create your first task, they’ll stay at root project, on tasks folder:

    my-project
    |-- my-app
    |   |-- __init__.py
    |   |-- apps.py
    |   |-- models.py
    |   |-- settings.py
    |-- tasks
    |   |-- __init__.py
    |   |-- _000001_my_first_task.py
    |-- manage.py
  5. For execute all unapplied tasks you can run python manage.py --run. If you need execute again a specfic task, you can run python manage.py -r my_first_task.

Authors

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

django-after-deploy-0.0.1.tar.gz (4.9 kB view hashes)

Uploaded Source

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