- Django 3.1 & Python 3.8
- Install via Pip, Pipenv, or Docker
- User log in/out, sign up, password reset via django-allauth
- Static files configured with Whitenoise
- Styling with Bootstrap v4
- Debugging with django-debug-toolbar
- DRY forms with django-crispy-forms
Can be installed via Pip, Pipenv, or Docker depending upon your setup. To start, clone the repo to your local computer and change into the proper directory.
$ git clone https://github.com/rigelk/magiciendose
$ cd magiciendose
$ python3 -m venv magiciendose
$ source magiciendose/bin/activate
(magiciendose) $ pip install -r requirements.txt
(magiciendose) $ python manage.py migrate
(magiciendose) $ python manage.py createsuperuser
(magiciendose) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000
$ pipenv install
$ pipenv shell
(magiciendose) $ python manage.py migrate
(magiciendose) $ python manage.py createsuperuser
(magiciendose) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000
# Run Migrations
(magiciendose) $ python manage.py migrate
# Create a Superuser
(magiciendose) $ python manage.py createsuperuser
# Confirm everything is working:
(magiciendose) $ python manage.py runserver
# Load the site at http://127.0.0.1:8000
Contributions, issues and feature requests are welcome!