https://github.com/patelvivekdev/password_generator
https://github.com/patelvivekdev/password_generator
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/patelvivekdev/password_generator
- Owner: patelvivekdev
- Created: 2021-04-11T16:59:22.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T05:44:54.000Z (almost 4 years ago)
- Last Synced: 2025-02-04T19:18:48.258Z (over 1 year ago)
- Language: Python
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Djnago password-generator
### Generate strong password with
- Numbers
- Uppercase
- Special Character
## Running Locally
```sh
$ git clone https://github.com/Vivek2509/password_generator.git
$ cd password_generator
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py collectstatic
$ python manage.py runserver
```
Your app should now be running on [localhost:8000](http://localhost:8000/).
## Deploying to Heroku
```sh
$ heroku login
$ git push heroku main
$ heroku run python manage.py migrate