Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 720 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 720 Bytes

Description

A Django-based CRUD web application, specifically, a blog.

Features

  • Auth (Login, Logout, Email, Password (encrypted))
  • Profiles (Profile picture, info and linked posts)
  • Admin Panel (Ease of control of users)
  • Database Communication (Using SQLite for development, Postgres for production)
  • Templates (Using default template engine for django)
  • Pagination
  • Password Reset

How to Run

  1. Create and activate a python virtual environment
  2. Run: pip install -r requirements.txt
  3. Navigate into the folder "django_project" by running the command: cd django_project
  4. Run: py manage.py runserver

The server should be hosted on port 8000, so just type in localhost:8000 into your browser.