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.
- django-sssoon is available on the Python Package Index (PyPI), so it can be installed with standard Python tools like
pip
oreasy_install
:
pip install django-sssoon
- Add "sssoon" and "captcha" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'captcha',
'sssoon',
]
- 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
- Include the sssoon URLconf in your project urls.py like this to make your index page coming sssoon:
path('', include('sssoon.urls', namespace="sssoon")),
- Collect static files
python manage.py collectstatic
- Start the development server and visit http://127.0.0.1:8000/