Metadata-Version: 2.1
Name: flask_auth_service_mongo
Version: 0.1.2
Summary: Flask JWT authentication package with mongo.
Home-page: https://gitlab.com/terminus-zinobe/flask-auth-service-mongo
Author: Terminus
Author-email: mateo.chaparro@zinobe.com
License: UNKNOWN
Description: # Flask authentication service with mongo
        
        Flask JWT authentication package with mongo.
        
        
        ## Installing
        - Install and update using pip:
            ```shell
            $ pip3 install -U flask-auth-service-mongo
            ```
        
        ## Configuration
        
        -   Define the following environment variables
            * (str) Key with which the token is generated
                ```
                SECRET_KEY=
                ```
            * (bool) Turn the token whitelist on or off
                ```
                WHITE_LIST_TOKEN=
                ```
            * (int) Minimum username length
                ```
                USERNAME_MIN_LENGTH=
                ```
            - (int) Minimum password length
                ```
                PASSWORD_MIN_LENGTH=
                ```
            - (int) Minutes in which the token will expire
                ```
                TOKEN_EXPIRE_MINUTES=
                ```
            - (int) Length of the password generated in the reset
                ```
                RESET_PASSWORD_LEN_GENERATOR=
                ```
            - (bool) Default value for auth.required(require_password_change)
                ```
                REQUIRE_PASSWORD_CHANGE=
                ```
        
        ## Links
        
        - [Documentation.](https://flask-auth-service-mongo.readthedocs.io/en/latest/index.html)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
