A Django application that enables profit sharing
Best attempt to share AdSense profit while keeping it DRY.
1. easy_install django-adware
2. pip install django-adware
3. git clone http://github.com/un33k/django-adware
a. cd django-adware
b. run python setup.py
4. wget https://github.com/un33k/django-adware/zipball/master
a. unzip the downloaded file
b. cd into django-adware-* directory
c. run python setup.py
# Add `adware` to your INSTALLED_APPS.
# Run `manage.py migrate`.
# In your settings.py set `ADWARE_TEMPLATE_BASE_DIR` to the directory for your template
# Add `adware` to your urls.py - ex: url(r'^account/ads/', include('adware.urls', namespace='adware'))
# `adense` & `form` will be passed to your template context for processing.
To run the tests against the current environment:
python manage.py test
Released under a (BSD) license.
X.Y.Z Version
`MAJOR` version -- when you make incompatible API changes,
`MINOR` version -- when you add functionality in a backwards-compatible manner, and
`PATCH` version -- when you make backwards-compatible bug fixes.