manage: Delete custom PYTHONSTARTUP.

In Django 5.2, manage.py shell automatically imports models.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2025-06-11 16:31:16 -07:00
committed by Tim Abbott
parent 24e8ba97cb
commit acd6c51b6f
2 changed files with 0 additions and 19 deletions

View File

@@ -148,7 +148,6 @@ if __name__ == "__main__":
log_management_command(sys.argv, settings.MANAGEMENT_LOG_PATH)
os.environ.setdefault("PYTHONSTARTUP", os.path.join(BASE_DIR, "scripts/lib/pythonrc.py"))
if "--no-traceback" not in sys.argv and len(sys.argv) > 1:
sys.argv.append("--traceback")
try:

View File

@@ -1,18 +0,0 @@
try:
from django.conf import settings
from analytics.models import * # noqa: F403
from zerver.models import * # noqa: F403
from zerver.models.realms import * # noqa: F403
from zerver.models.streams import * # noqa: F403
from zerver.models.users import * # noqa: F403
if settings.CORPORATE_ENABLED:
from corporate.lib.stripe import * # noqa: F403
except Exception:
import traceback
print("\nException importing Zulip core modules on startup!")
traceback.print_exc()
else:
print("\nSuccessfully imported Zulip settings, models, and actions functions.")