A simple Go web application for generating passwords, options (length, digits, lowercase, uppercase).

-
Clone the repository:
git clone https://github.com/yourusername/passwordGenerator.git cd passwordGenerator -
Run with Go:
go run ./cmd/password-generator
The app will be available at http://localhost:8080
-
Build and run with Docker Compose:
docker compose up --build
The app will be available at http://localhost:8080
-
Or build and run manually:
docker build -t password-generator . docker run -p 8080:8080 password-generator