10 lines
236 B
Python
Executable File
10 lines
236 B
Python
Executable File
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
from settings.environment import env
|
|
|
|
|
|
# TODO: delete this demo
|
|
# Just show you which env get application or default values
|
|
for key, value in env.dump().items():
|
|
print(key, '|', value)
|