django-sssoon

A simple Django app to add a beautiful coming soon page to your project.


Keywords
coming, soon, django, sssoon, coming-soon, python3
License
BSD-3-Clause
Install
pip install django-sssoon==0.1.12

Documentation

django-sssoon

Django-sssoon is a simple Django app to add beautiful coming soon webpage to your django website. This template is based on on Bootstrap 3 and designed by Creative Tim.

Screenshot

Quick start

  1. django-sssoon is available on the Python Package Index (PyPI), so it can be installed with standard Python tools like pip or easy_install:
pip install django-sssoon
  1. Add "sssoon" and "captcha" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
    ...
    'captcha',
    'sssoon',
]
  1. Sign up for reCAPTCHA, then Add the Google reCAPTCHA keys generated to your Django production settings with RECAPTCHA_PUBLIC_KEY and RECAPTCHA_PRIVATE_KEY
# https://github.com/praekelt/django-recaptcha
RECAPTCHA_PUBLIC_KEY = "MyRecaptchaKey123"
RECAPTCHA_PRIVATE_KEY = "MyRecaptchaPrivateKey456"
RECAPTCHA_REQUIRED_SCORE = 0.3
  1. Include the sssoon URLconf in your project urls.py like this to make your index page coming sssoon:
path('', include('sssoon.urls', namespace="sssoon")),
  1. Collect static files
python manage.py collectstatic
  1. Start the development server and visit http://127.0.0.1:8000/