lektor-website/content/docs/api/environment/load-config/contents.lr

27 lines
670 B
Plaintext
Raw Normal View History

2015-12-19 14:52:17 +01:00
title: load_config
---
type: method
---
summary: Loads the current config from the project file.
---
body:
Because the environment is reused between builds, the config is not cached
on the environment but needs to be explicitly loaded. This happens with
2015-12-19 14:52:17 +01:00
the help of the `load_config` method. It returns a config object that
gives access to the settings in the project file.
These settings are work in progress and if you want to know how to use
the config file and what to do with it, you have to consult the source
code.
## Example
```python
from lektor.project import Project
project = Project.discover()
env = project.make_env()
config = env.load_config()
```