/Blog-site

Django

Primary LanguageCSS

Blog-Site

    A Blog website base on Django, with Blog, comment, pagination features

Clone the project to your system

git clone https://github.com/Rajangupta09/Blog-site.git

Change into project directory

cd Blog-site

Create virtual environment

virtualenv env
./env/Scripts/activate

Install requirements

pip install -r requirements.txt

Create database

sudo -u postgres psql -f ./setup.sql

Makemigrations and migrate

python manage.py makemigrations
python manage.py migrate

Start the development server

python manage.py runserver