A simple password generator django app clubbed with Bootstrap 4, this project is just a django implemanation of one of my python script within my repository PythonXample PythonXample/PyPassGen.py.
This project has been designed to meet the daily system admin requirement to generate strong and random passwords.
It has cool features like
-
Cool and resposive UI
-
Supports exclusions within random passwords too.
-
Supports Multidigit password generation.
-
Refresh dialog to regenerate same desired password length.
-
Copy Content to avoid noisy data within password.
As a docker container.
-
Download djpass docker imager
docker pull jackuna/djpassOnce the image has been downloded, find the image and initiate a container using it's corrosponding image ID. Find Image Id using docker command
docker images -
Now run the container.
docker run -td --name djpass -p 9090:9090 < IMAGE ID > -
Login into the container and initiate our djpass django app
docker exec -it djpass /bin/bash cd /usr/local/djpass/ python3 manage.py runserver 0.0.0.0:9090 &Hit Ctr+C as we have already initiated the django server in background.
Access the application from below url
http://<your server ip>:9090/djpass
