This project contains a simple password generator. It is designed to quickly and easily generate a secure password at the touch of a button.
- 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
Client: React, Axios, TailwindCSS
Server: FastAPI (Python)
- Clone this repo
- Go to the client folder
- Run:
npm install -D tailwindcss postcss autoprefixer axios
- In client/src/App.jsx insert your IP or URL where your API runs
- Go to the server folder
- Run:
pip install fastapi uvicorn
To start the application:
- Go to the client folder and run:
npm run dev
- Go to the server folder and run:
python main.py