Skip to content

Latest commit

 

History

History
59 lines (37 loc) · 812 Bytes

README.md

File metadata and controls

59 lines (37 loc) · 812 Bytes

Password Manager

Requirements to run this app:

  • Python 3.+
  • Venv

How to run this app?

Clone this repository and enter the folder. Create a virtual environment.

python3 -m venv venv

You need to activate virtual env:

source venv/bin/activate

Now run this command in the terminal to install the required libraries:

pip install -r requirements.txt

Migrate the db:

python manage.py makemigrations
python manage.py migrate

For admin panel, first create a superuser:

python3 manage.py createsuperuser

Start server:

python3 manage.py runserver

Go to http://127.0.0.1:8000/

Screenshots:

home

add

login

register

passwords