A Django starter project that "just works." For a production-ready version see the book Django for Professionals.
- Django 3.0.x
- Pipenv for dependencies and virtualenvs
- django-allauth for user registration
- Whitenoise for static files
- Bootstrap v4 for styling
- django-debug-toolbar for debugging
- django-crispy-forms for DRY forms
$ git clone https://github.com/wsvincent/djangox.git
$ cd djangox
$ pipenv install
$ pipenv shell
# Run Migrations
(djangox) $ python manage.py migrate
# Create a Superuser:
(djangox) $ python manage.py createsuperuser
# Confirm everything is working:
(djangox) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000
Contributions, issues and feature requests are welcome! See CONTRIBUTING.md.
Give a ⭐️ if this project helped you!