Giter Site home page Giter Site logo

django-launch-page's Introduction

django-launch-page

A launch page for a Django project to collect e-mail addresses and more.

Master Build Status

Build Status

Develop Build Status

Build Status

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.

Installation

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.

Contributing

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

django-launch-page's People

Contributors

ryanbalfanz avatar theofilis avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

django-launch-page's Issues

The included urlconf doesn't have any patterns in it

Hi,

I installed django-launch-page using pip, and this erros is showing of:

ImproperlyConfigured at /launch_page/
The included urlconf <module 'launch_page.urls' from /usr/local/lib/python2.7/dist-packages/launch_page/urls.py'> doesn't have any patterns in it

Can you please help me?

Thanks.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.