A launch page for a Django project to collect e-mail addresses and more.
Installing launch_page
to your Django project will give you a simple teaser page for collecting e-mail addresses, names, and IP addresses.
The IP address can be geolocated with GeoIP. For more information, see the GeoIP documentation.
Install from PyPI:
pip install django-launch-page
Add launch_page
to your INSTALLED_APPS
:
INSTALLED_APPS = (
...
'launch_page',
)
Include the launch_page
URLconf in your project urls.py:
urlpatterns = patterns('',
...
url(r'^launch_page/', include('launch_page.urls')),
)
or, bind it to the root domain, as in the example project:
urlpatterns = patterns('',
url(r'', include('launch_page.urls')),
...
)
Migrate the application:
python manage.py migrate launch_page
The use of custom templates is similar to overriding admin templates.
Create a new virtualenv:
pyvenv venv
Install the development packages
pip install -r requirements.txt
Then install the application's package:
python setup.py develop
Run the example project:
cd example_project/
foreman start
# Or, with Django's development server
python manage.py runserver
Testing across multiple Python versions is support with tox. To run the tests:
make test