/magiciendose

Primary LanguagePythonOtherNOASSERTION

🚀 Features


Table of Contents


📖 Installation

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

Pip

$ 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

$ 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

Setup

# 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

🤝 Contributing

Contributions, issues and feature requests are welcome!

License

The MIT License