Skip to content

ashish077/blogpost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

blogpost

A simple blog writing web application built with Django. Follow the steps below to get a local development environment running.

Installation

  1. Clone the repository and enter the project directory:

    git clone <repo-url>
    cd blogpost
  2. Create a virtual environment (recommended) and activate it:

    python3 -m venv venv
    source venv/bin/activate  # On Windows use `venv\Scripts\activate`
  3. Install dependencies. The project relies on Django 1.10.7:

    pip install Django==1.10.7

Running the app

  1. Apply database migrations:

    python manage.py migrate
  2. Start the development server:

    python manage.py runserver

Visit http://127.0.0.1:8000/ in your browser to see the application.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published