# Initialize the database (add logger if needed, otherwise this just prints)
config=initialize_database(logger=None)
if__name__=="__main__":
common_config.main()
```
If people now run that file, they will get an interactive configuration-tool
If people now run that file (or `common_config.main()`, they will get an interactive configuration-tool that helps them creating the config in the XDG-standardized paths
Within your application you can use it as follows
```python
importconfig
print(f"This application is called {config.APPLICATION_NAME}, the mood is {config.mood}")