Blog application

Post_List

alt text

Post_Details

alt text

Post_Update

alt text

Setup

The first thing to do is to clone the repository:

$ git clone https://github.com/mammadsafar/django_Weblog.git
$ cd django_Weblog

You can run in docker:

$ docker-compose up -d --build

And navigate to http://127.0.0.1:8000 .

OR:

Create a CONDA environment to install dependencies in and activate it:

$ conda create -n blog python=3.9
$ conda activate blog

Then install the dependencies:

(blog)$ pip install -r requirements.txt

Note the (env) in front of the prompt. This indicates that this terminal session operates in a virtual environment set up by virtualenv2.

Once pip has finished downloading the dependencies:

(blog)$ cd project
(blog)$ python manage.py runserver

And navigate to http://127.0.0.1:8000/blog/postlist.