Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DO NOT MERGE: Override runserver command to add deprecation warning #17

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
3 changes: 2 additions & 1 deletion example_project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,15 @@
# Application definition

INSTALLED_APPS = [
"django_prodserver",
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.messages",
"django.contrib.staticfiles",
"example_project.example",
"django_prodserver",

]

MIDDLEWARE = [
Expand Down
13 changes: 13 additions & 0 deletions src/django_prodserver/management/commands/runserver.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import warnings

from django.core.management.commands.runserver import Command as RunServerCommand
from django.utils.deprecation import RemovedAfterNextVersionWarning

class Command(RunServerCommand):
def handle(self, *args, **kwargs):
warnings.warn(
"runserver is deprecated in favor of devserver.",
RemovedAfterNextVersionWarning,
stacklevel=2,
)
super().handle(*args, **kwargs)
Loading