Metadata-Version: 2.1
Name: django-ripple
Version: 0.2.30
Summary: Django-React-Bootstrap Framework Django Component
Home-page: https://www.rippleenergy.com/
Author: Miklos Parrag
Author-email: miklos.parrage@gmail.com
License: ISC License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
License-File: LICENSE

=============
Ripple Django
=============

Ripple Django is a base app for a Django-React-Bootstrap Framework that can be run in Google Cloud


Quick start
-----------

1. Add "rippledjango" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'ripple',
    ]

2. Include the polls URLconf in your project urls.py like this::

    path('auth/', include('rippledjango.urls')),

3. Run `python manage.py migrate` to create the polls models.

4. Start the development server and visit http://127.0.0.1:8000/admin/
   to create a poll (you'll need the Admin app enabled).

5. Visit http://127.0.0.1:8000/.

