An open API service indexing awesome lists of open source software.

https://github.com/saadazghour/django-practice

Learn Django by doing . & Basic CRUD Operations using Views & Class Based Views & Much More ........
https://github.com/saadazghour/django-practice

django html5 python3 training tutorial tutorial-teaches-people

Last synced: about 1 month ago
JSON representation

Learn Django by doing . & Basic CRUD Operations using Views & Class Based Views & Much More ........

Awesome Lists containing this project

README

          

# Django Training

Project for test my knowledge and more Practice

# Running the Project Locally

## First, clone the repo to your local machine :

```bash
$ git clone https://github.com/SAzghour/Django-Training.git
```

## Create a virtual environment :

```bash
$ python -m venv .venv
```

## Activate the virtual environment on Windows :

```bash
$ source venv/Scripts/activate
```

## Install the requirements :

```bash
$ pip install -r requirements.txt
```

## To create an superuser account, use this command :

```bash
$ python manage.py createsuperuser
```

## Apply the migrations :

```bash
$ python manage.py migrate
```

## Finally, run the development server :

```bash
$ python manage.py runserver
```

The project will be available at : **http://localhost:8000**