Contains:
- Material Design with Boostrap framework
- Jazzmin admin template
- Python decouple
- Docker-compose deployment
- requires python >=3.9
- clone repository
- create virtual environment with python3
- activate venv
- install dependencies
- configure .env file with credentials
- run makemigrations/migrate
- create superuser
- run tests
git clone https://github.com/GuiFV/guilsportfolio guilsportfolio
cd guilsportfolio
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements-dev.txt
python manage.py makemigrations
python manage.py migrate
python manage.py createsuperuser
python manage.py test