A web app written in python using Django framework.
python3.7.0
Django 2.1.1
Django-crispy-forms
Pillow 2.5.0
pip install --user pipenv
mkdir python-src
cd python-src
pipenv install --python 3.7
pipenv shell
pip install django
pip install django-crispy-forms
pip install Pillow
django-admin check
Edit file settings.py
Specify hosts where the web server would be run:
ALLOWED_HOSTS = ['192.168.100.22', 'www.myfameblog.com']
python manage.py runserver localhost:9000
or
python manage.py runserver 0:9000
or
python manage.py runserver www.myfameblog.com:9000