Personal portfolio site for the author built in Django
- Clone Repo
- Navigate to repository root
- run
python -m venv envto create virtual enviornment - run
pip install -r requirements.txt && pip install -r requirements_dev.txt - Add .env file to root of repo (add environment variable
DJANGO_ENV=DEVif in development)... seesettings.pyfor available options - Run
python manage.py migrate - If in production, run
python manage.py collectstatic - Run
python manage.py createsuperuserand follow prompts to create first user - Run
python manage.py runserver