Skip to content

itsgitz/django-lab

Repository files navigation

Notes: I used Linux on this lab, so if you are using Windows some of the steps in this lab will be failed.

Prerequisites

  1. Create python virtual environment for better development process.
$ python3 -m venv venv
  1. Activate the python virtual environment.
$ source venv/bin/activate

Installation

Installing Django web framework.

$ python3 -m pip install Django
$ python3 -m django --version

Creating a project

$ mkdir django-lab
$ django-admin startproject getting_started django-lab
$ cd django-lab
$ python3 manage.py runserver

Tutorial Sources

I followed the tutorials from the Django official documentation website for the fundamentals. And the documentation from Flowbite for the Tailwindcss installation.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages