/django-blog

A simple blog application built with Django.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Django Blog

A simple blog application built with Django.

Credits: Corey Schafer

Continuous Integration Coverage Status

Required Software

Local Setup

  1. Clone the repository
  2. Create and activate a virtual environment using pipenv by running $ pipenv shell
  3. Install dev dependencies by running $ pipenv install --dev
  4. Generate compressed static files using $ python manage.py collectstatic
  5. Run the tests using $ python manage.py test
  6. Run the database migrations using $ python manage.py migrate
  7. Create a superuser using $ python manage.py createsuperuser
  8. Use $ python manage.py runserver to run the development server
  9. Visit localhost:8000 in your browser