Difference between revisions of "Creating a Django Web App"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Setup the Path)
(Setup the Path)
Line 38: Line 38:
 
=Setup - Manually on Own Machine=
 
=Setup - Manually on Own Machine=
 
==Setup the Path==
 
==Setup the Path==
You will need to ensure your system path is set to access the python folder and the scripts folder.
+
You will need to ensure your system path is set to access the python folder and the scripts folder. Search for 'path' in the search bar, and click 'edit the system variables':
 
 
Search for 'path' in the search bar, and click 'edit the system variables':
 
  
 
[[File:Capture1.gif]]
 
[[File:Capture1.gif]]

Revision as of 16:47, 12 April 2019

Setup - Visual Studio

Create a new project in Visual Studio, look in the python section and Django:

Django1.gif

On your own machines, this will install all of the appropriate packages into your python installation if you select 'Install into Python'. However in College will will need to do a bit more, and instead choose 'install into virtual environment':

Vswebapp1.png

In College we will need see this window:

Vswebapp2.png

You can untick the install packages option, because this will fail on college computers.

Now, find the site packages folder within your project folder:

Django4.gif

Extract this zip file: Django 1.11.20

You should now have:

Django5.gif

Next, you will need to create a super user account. This must be done before running the app for the first time:

Django6.gif

Now click start in Visual Studio, you should see something like this:

Django2.gif

It should automatically open a browser, it should already point to your web app:

Django3.gif

Setup - Manually on Own Machine

Setup the Path

You will need to ensure your system path is set to access the python folder and the scripts folder. Search for 'path' in the search bar, and click 'edit the system variables':

Capture1.gif

Now click 'Environment Variables':

Capture2.gif

Now select Path and click edit:

Capture 3.gif

Now look on your system to find where Python is installed, make a note of the folder and also check to see if it also has a script folder. Now add these values to the Path:

Capture 4.gif

Install Django

Create an app