We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09700d1 commit 9717ac9Copy full SHA for 9717ac9
1 file changed
README.md
@@ -51,7 +51,7 @@ Use `${SOME_VARIABLE_NAME}` to use an existing setting as a value.
51
```toml
52
[tool.django]
53
GOOD_IPS = ["127.0.0.1"]
54
-ALLOWED_HOSTS = ${GOOD_IPS}
+ALLOWED_HOSTS = "${GOOD_IPS}" # this needs to be quoted to be valid TOML, but will be converted into a `list`
55
```
56
57
### Apps
@@ -89,7 +89,7 @@ The prefix and suffix that denotes a special operation can be configured with `T
89
90
TOML_SETTINGS_SPECIAL_PREFIX = "&"
91
TOML_SETTINGS_SPECIAL_SUFFIX = "*"
92
-BASE_DIR = { &path* = "." }
+BASE_DIR = { "&path*" = "." }
93
94
95
### Path
0 commit comments