- User Authentication
- Reset Password
- Account Management
- Part-Blogging system
- Login system
You need to have python 3 installed to run the web application from the local web server.
-
- 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
- Create a virtual environment
-
- 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
- Create a virtual environment