A simple blog writing web application built with Django. Follow the steps below to get a local development environment running.
-
Clone the repository and enter the project directory:
git clone <repo-url> cd blogpost
-
Create a virtual environment (recommended) and activate it:
python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install dependencies. The project relies on Django 1.10.7:
pip install Django==1.10.7
-
Apply database migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
Visit http://127.0.0.1:8000/
in your browser to see the application.