Secret Santa Generator - Django Edition!
A rework of the Secret Santa Generator idea I had and implemented previously. I have been debating learning how to use Django for a while now, so this was an opportunity to step outside my comfort zone!
Technologies used
Run Book
First, clone this project onto your local machine. You should be running Python 3 and have pip
installed. This project
has been built to run in a virtual environment. If you don't have it installed, you'll need to install virtualenv.
pip install virtualenv
Next, you'll navigate to the root of the project if you haven't already and spin up the virtual environment.
python3 -m venv secret_santa_env
source secret_santa_env/bin/activate
You should notice (secret_santa_env)
prefixed on your command line at this point. This indicates that the environment is running.
Finally, you'll need to install the modules within this local environment. You can do this with this command:
pip install -r requirements.txt