quinone / password-manager

Password management application developed as a group project for college.
0 stars 0 forks source link

Password-manager

Password management application for a college group project.

Features

Installation

Install Flask

Follow the steps on the Flask website.

Run Flask Application

Clone repository with

git clone git@github.com:quinone/password-manager.git

Initialize the database using the your IDE's terminal:

flask init-db

Run application using the your IDE's terminal:

flask run

Testing

Using Pytest While in the parent directory using the your IDE's terminal use:

pytest

Specific test scripts can be ran alone:

pytest <path to test scripts>/<test_name>.py

Example:

pytest ./tests/test_folder.py