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 ........
- Host: GitHub
- URL: https://github.com/saadazghour/django-practice
- Owner: saadazghour
- Created: 2018-11-18T16:21:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-07-23T10:28:47.000Z (over 5 years ago)
- Last Synced: 2025-01-18T12:34:40.224Z (about 1 year ago)
- Topics: django, html5, python3, training, tutorial, tutorial-teaches-people
- Language: Python
- Homepage:
- Size: 44.9 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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**