Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 867 Bytes

installation.configuration.rst

File metadata and controls

31 lines (21 loc) · 867 Bytes

Installation and configuration

  1. Install package from pypi:
pip install django-drip-campaigns
  1. Add drip app to the INSTALLED_APPS list in your project settings:
INSTALLED_APPS = [
    ...,
    'django.contrib.contenttypes',
    'django.contrib.comments',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.admin',
    # ...
    'drip',
]
  1. (Optional) Set DRIP_FROM_EMAIL = '<your_app_from_email>' in your settings, where <your_app_from_email> is the email account that is going to be shown in the sent emails. Otherwise EMAIL_HOST_USER value will be used.
  2. Finally, run migrate to set up the necessary database tables:
python manage.py migrate drip