nizos / Django-App

Django App Tutorial Implementation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django App

About

This is an implementation of a Django tutorial from djangoproject.

The project is created using:

  • Python version 3.6.
  • Django version 2.2.

Start app

move to the outer mysite directory /mysite and run the following command in the terminal:

python manage.py runserver

You should now be able to visit the website at: http://127.0.0.1:8000/

Tutorial steps & setting up the environment

Creating the environment

Update & upgrade OS repo

sudo apt update
sudo apt upgrade

Install python3 and python3-pip

sudo apt install python3
sudo apt install python3-pip

Install Django

python3 -m pip install Django==2.2

Check versions

pyhton3 --version
# Python 3.6.9
python3 -m pip --version
# pip 20.0.2 from /home/nizar/.local/lib/python3.6/site-packages/pip (python 3.6)
python3 -m django --version
# 2.2

Contributors

Andreas, Nizar, Rickard, Joel & Wissam.

About

Django App Tutorial Implementation

License:Open Software License 3.0


Languages

Language:Python 100.0%