An open API service indexing awesome lists of open source software.

https://github.com/sauberr/password_generator_project

Django project password generator
https://github.com/sauberr/password_generator_project

python

Last synced: 20 days ago
JSON representation

Django project password generator

Awesome Lists containing this project

README

        

# Password generator project

The project for study Django.

#### Stack:

- [Python](https://www.python.org/downloads/)

## Local Developing

All actions should be executed from the source directory of the project and only after installing all requirements.

1. Firstly, create and activate a new virtual environment:
```bash
python3.11 -m venv ../venv
source ../venv/bin/activate
```

2. Install packages:
```bash
pip install --upgrade pip
pip install -r requirements.txt
```