Building a Blog application with Django for learning.
These instructions will get you a copy of the Python dependencies and database setup of the project up and running on your local machine for development.
What things you need to install :
Python 3.7.x
Pipenv 2020.6.2
Django (last version)
A step by step series of examples that tell you how to get a development env running:
- Make sure your pip and python is installed:
$ python --version
$ pip --version
-
Go to the directory where your repository folder is located
-
Install pipenv
$ pip install pipenv
4.Create a virtual environment
$ pipenv --python 3.7
5.Install Django
$ pipenv --python 3.7
- Navigate to the project directory
$ cd {{ project_name }}/
- Run server
$ python manage.py runserver
Django authentication system Documentation