Skip to content

Latest commit

 

History

History
46 lines (43 loc) · 1.11 KB

README.md

File metadata and controls

46 lines (43 loc) · 1.11 KB

FEATURES

  • User Authentication
  • Reset Password
  • Account Management
  • Part-Blogging system
  • Login system

BUILT WITH FLASK, HTML, CSS, JS, PostgresSQL

Installation

You need to have python 3 installed to run the web application from the local web server.

  • Windows using command prompt

    • Create a virtual environment
      python -m virtualenv (name of your environment)
    • Install required files using the requirements.txt
      pip install -r requirements.txt
    • Activate virtual enviroment
      (name of your enviroment)\Scripts\activate
    • Run it
      python run.py
  • Linux and Mac

    • Create a virtual environment
      python3 -m venv (name of your environment)
    • Install required files using the requirements.txt
      pip3 install -r requirements.txt
    • Activate virtual environment
      source (name of your environment)\Scripts\activate
    • Run it
      python3 run.py