Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1import os 

2 

3from dynaconf import Dynaconf 

4 

5current_directory = os.path.dirname(os.path.realpath(__file__)) 

6 

7settings = Dynaconf( 

8 envvar_prefix="ENV", settings_files=[ 

9 f"{current_directory}/settings.toml", 

10 f"{current_directory}/.secrets.toml" 

11 ], 

12)