Skip to content

A python web app using django framework -- development stage. Check out django deployment on how to run on PaaS or IaaS. Remember to change DJANGO_SECRET_KEY, DJANGO_DEBUG, AND ALLOWED_HOSTS, etc.. in setting.py first.

Notifications You must be signed in to change notification settings

hurricanemark/django-web-blog-

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Romiland Blog

A web app written in python using Django framework.

Pre-requisites

python3.7.0
Django 2.1.1
Django-crispy-forms
Pillow 2.5.0

Environment

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

Configure

Edit file settings.py

Specify hosts where the web server would be run: ALLOWED_HOSTS = ['192.168.100.22', 'www.myfameblog.com']

Running

python manage.py runserver localhost:9000

or

python manage.py runserver 0:9000

or

python manage.py runserver www.myfameblog.com:9000

About

A python web app using django framework -- development stage. Check out django deployment on how to run on PaaS or IaaS. Remember to change DJANGO_SECRET_KEY, DJANGO_DEBUG, AND ALLOWED_HOSTS, etc.. in setting.py first.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published