An open API service indexing awesome lists of open source software.

https://github.com/hurricanemark/django-web-blog-

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.
https://github.com/hurricanemark/django-web-blog-

css django-crispy-forms django-framework pillow pipenv python37

Last synced: 7 months ago
JSON representation

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.

Awesome Lists containing this project

README

          

# **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