oauth_testing_flask description
Run the application:
make run
And open it in the browser at http://127.0.0.1:5000/
Python >=3.7
-
make venv: creates a virtualenv with dependencies and this application installed (latter is installed in development mode) -
make run: runs a development server in debug mode (changes in source code are reloaded automatically) -
make test: runs tests (see also: Testing Flask Applications) -
make dist: creates a wheel distribution (will run tests first) -
make clean: removes virtualenv and build artifacts -
add application dependencies in
pyproject.tomlunderproject.dependencies; add development dependencies underproject.optional-dependencies.* -
to modify configuration, pass it in environment variables prefixed with
FLASK_; e.g.,FLASK_DEBUG, etc.;
Default configuration is loaded from oauth_testing_flask.default_settings and can be
overriden by environment variables with a FLASK_ prefix. See
Configuring from Environment Variables.
Consider using dotenv.
You may use the distribution (make dist) to publish it to a package index,
deliver to your server, or copy in your Dockerfile, and insall it with pip.
You must set a SECRET_KEY in production to a secret and stable value.