Skip to content

Latest commit

 

History

History
35 lines (34 loc) · 758 Bytes

README.md

File metadata and controls

35 lines (34 loc) · 758 Bytes

Workshop

How to run Django

Step 1: Make a virtual enviroment

Let's download 'venv'. Open cmd-line in your's site's folder:

C:\my_project> python -m venv 'yours_venv_name'

Step 2: Run virtual enviroment

For running venv write this command:

C:\my_project> python 'yours_venv_name'\Scripts\activate

Now your adress line shuld looks like:

('yours_venv_name')C:\my_project>

Step 3: Installing Django

To install all requirement librarys:

pip install -r requirements.txt

Step 4: Run server

For running server on your own machine:

python manage.py runserver

Step last one:

Open the page 127.0.0.1:8000

Work Log

Step 2

Created the static html file

Step 1

Created the wireframe on the board