Skip to content

Commit 0d48f0a

Browse files
committed
fix: default behavior should be to load sample data
1 parent d30dd2a commit 0d48f0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benefits/core/migrations/0002_sample_data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def load_sample_data(app, *args, **kwargs):
11-
if os.environ.get("DJANGO_LOAD_SAMPLE_DATA", "false").lower() == "false":
11+
if os.environ.get("DJANGO_LOAD_SAMPLE_DATA", "true").lower() == "false":
1212
print(" DJANGO_LOAD_SAMPLE_DATA is set to False, skipping sample data")
1313
return
1414

0 commit comments

Comments
 (0)