-
Notifications
You must be signed in to change notification settings - Fork 2
/
manage.py
executable file
·28 lines (24 loc) · 928 Bytes
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
"""
Standard Django management script.
"""
# Copyright 2013 The Distro Tracker Developers
# See the COPYRIGHT file at the top-level directory of this distribution and
# at https://deb.li/DTAuthors
#
# This file is part of Distro Tracker. It is subject to the license terms
# in the LICENSE file found in the top-level directory of this
# distribution and at https://deb.li/DTLicense. No part of Distro Tracker,
# including this file, may be copied, modified, propagated, or distributed
# except according to the terms contained in the LICENSE file.
import os
import sys
if __name__ == "__main__":
os.environ.setdefault(
"DJANGO_SETTINGS_MODULE", "distro_tracker.project.settings"
)
os.environ.setdefault(
"DJANGO_LIVE_TEST_SERVER_ADDRESS", "localhost:8081-8085"
)
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)