/Workshop_Django

Primary LanguagePythonMIT LicenseMIT

Workshop_Django4.1

This is a simple introduction to Django projects.

Things you'll need:

What you need to do

  1. Install Python

  2. pip install virtualenv

  3. Clone the project

  4. cd projectName

  5. virtualenv env

  6. Activate the virtualenv ==> .\env\Scripts\activate

Install the requirements

requirements.txt contains all the packages you will need for this work.

  1. pip install -r requirements.txt

Create a project

django-admin startproject projectName .

Run the server

py manage.py runserver

Create an App

py manage.py startapp AppName

Captures 1:

1 2 3

Captures 2:

1 2 3