Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pythonie/pythonie/settings/dev.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ruff: noqa
import os
from pythonie.settings.configure import configure_redis

from .base import * # flake8: noqa
from .base import *

DEBUG = True

Expand Down
4 changes: 3 additions & 1 deletion pythonie/pythonie/settings/production.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ruff: noqa
import os
from pythonie.settings.configure import configure_redis

from .base import * # flake8: noqa
from .base import *

# Disable debug mode
DEBUG = False
Expand Down
4 changes: 3 additions & 1 deletion pythonie/pythonie/settings/tests.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# ruff: noqa
import os
from pythonie.settings.configure import configure_redis

from .base import * # flake8: noqa
from .base import *

DEBUG = True

Expand Down