mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-27 19:30:08 +00:00
19 lines
262 B
Python
19 lines
262 B
Python
![]() |
"""Settings to override default settings."""
|
||
|
|
||
|
import logging
|
||
|
|
||
|
#
|
||
|
# Override settings
|
||
|
#
|
||
|
DEBUG = True
|
||
|
|
||
|
HTTP_PORT = 8888
|
||
|
HTTP_ADDRESS = '0.0.0.0'
|
||
|
|
||
|
#
|
||
|
# Set logging level
|
||
|
#
|
||
|
logging.getLogger().setLevel(logging.DEBUG)
|
||
|
|
||
|
JOB_CLASS_PACKAGES = ['ingestion_scheduler.jobs']
|