Skip to content

Commit 7ab0db4

Browse files
committed
Waffle things default to True when DEV is True.
1 parent a4e0209 commit 7ab0db4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

bedrock/settings/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
if DEV:
2727
ALLOWED_HOSTS = ['*']
2828

29+
# waffle flags, switches, and samples should default to True in DEV mode
30+
WAFFLE_FLAG_DEFAULT = WAFFLE_SWITCH_DEFAULT = WAFFLE_SAMPLE_DEFAULT = DEV
31+
2932
# Any databases configured other than "default" should be
3033
# read-only slaves, which funfactory's default router
3134
# should use with this setting.

0 commit comments

Comments
 (0)