Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1 KB

README.md

File metadata and controls

51 lines (37 loc) · 1 KB

EzPasswordGenerator

This project contains a simple password generator. It is designed to quickly and easily generate a secure password at the touch of a button.

Features

  • A Slider to select the length of the password
  • A Button to generate the password
  • A "Copy to Clipboard" feature to copy the generated password
  • Advanced password settings

Tech Stack

Client: React, Axios, TailwindCSS

Server: FastAPI (Python)

Demo

Preview:
demo

Clone

  1. Clone this repo
  2. Go to the client folder
  3. Run:
npm install -D tailwindcss postcss autoprefixer axios
  1. In client/src/App.jsx insert your IP or URL where your API runs
  2. Go to the server folder
  3. Run:
pip install fastapi uvicorn

To start the application:

  1. Go to the client folder and run:
npm run dev
  1. Go to the server folder and run:
python main.py

Authors