6a08320031
This change condenses the directory structure to something more similar to what we had before while producing similar packages. It also introduces version.py which allows us to get the version from git tags (or a fallback version if not available). Fixes lp bug 889336 Fixes lp bug 888795 Change-Id: I86136bd9dbabb5eb1f8366ed665ed9b54f695124
25 lines
619 B
Plaintext
25 lines
619 B
Plaintext
[DEFAULT]
|
|
# Show more verbose log output (sets INFO log level output)
|
|
verbose = True
|
|
|
|
# Show debugging output in logs (sets DEBUG log level output)
|
|
debug = False
|
|
|
|
# Address to bind the API server
|
|
bind_host = 0.0.0.0
|
|
|
|
# Port the bind the API server to
|
|
bind_port = 9696
|
|
|
|
# Path to the extensions
|
|
api_extensions_path = unit/extensions
|
|
|
|
[pipeline:extensions_app_with_filter]
|
|
pipeline = extensions extensions_test_app
|
|
|
|
[filter:extensions]
|
|
paste.filter_factory = quantum.common.extensions:plugin_aware_extension_middleware_factory
|
|
|
|
[app:extensions_test_app]
|
|
paste.app_factory = quantum.tests.unit.test_extensions:app_factory
|