Minimalistc wine brand website displaying splash page, wine descriptions, consultant and contact inquiries.
Admin access allows for creating new wines to be displayed in wine list page with ability to edit and delete present wines.
Admin access also can view submissions and mark them as complete.
Login by clicking the Fried Chicken icon in the bottom right footer.
In your terminal, clone down repository and in root directory create new python environment.
python -m venv .venv
Activate the environment
source .venv/bin/activate
Update pip
python -m pip install --upgrade pip
Install requirements
pip install -r requirements.txt
Run migrations
python manage.py migrate
Runserver
python manage.py runserver
Create super user
python manage.py createsuperuser
Access in browser
http://localhost:8000