-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathmanage.py
35 lines (24 loc) · 1.28 KB
/
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
29
30
31
32
33
34
35
'''
Copyright (C) 2014 Codility Limited. <https://codility.com>
This file is part of Candidate User Interface (CUI).
CUI is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version accepted in a public statement
by Codility Limited.
CUI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with CUI. If not, see <http://www.gnu.org/licenses/>.
'''
# Stand-alone Django server for the CUI app.
# Based on https://github.com/readevalprint/mini-django
import os, sys
from django.core.management import execute_from_command_line
if __name__=='__main__':
# Try binding to multiple ports in case the first one is not available.
os.environ.setdefault('DJANGO_LIVE_TEST_SERVER_ADDRESS', 'localhost:8050-8099')
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'run_settings')
execute_from_command_line(sys.argv)