Every line of 'django run server' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
65 def run(server_class=HTTPServer, handler_class=Server, port=7000): 66 server_address = ('', port) 67 httpd = server_class(server_address, handler_class) 68 69 print('Starting scores service on port %d...' % port) 70 httpd.serve_forever()
61 def run(server_class=HTTPServer, handler_class=S, port=8000): 62 server_address = ('', port) 63 httpd = server_class(server_address, handler_class) 64 print 'Starting httpd...' 65 httpd.serve_forever()
44 def run(server_class=HTTPServer, handler_class=Handler, port=80): 45 httpd = server_class(('0.0.0.0', port), handler_class) 46 httpd.serve_forever()
49 @task 50 def runserver(): 51 """Run CRITs using the built-in runserver.""" 52 with cd(APP_ROOT): 53 run("python manage.py runserver 0.0.0.0:8080")
79 @manager.command 80 def runserver(): 81 import os 82 os.environ['DEBUG'] = 'true' 83 os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = 'true' 84 import config 85 PORT = config.Deployment.PORT 86 HOST = config.Deployment.HOST 87 app.run( 88 port=PORT, 89 host=HOST)
82 def run(num_processes = 2, port = 8080, logging = False, trace_sql = False, 83 db_engine = 'sqlite3'): 84 server_address = ('', port) 85 httpd = server(server_address, 86 wsgiref.simple_server.WSGIRequestHandler 87 if logging 88 else RequestHandlerNoLogging, 89 num_processes, trace_sql, db_engine) 90 httpd.set_app(wsgi_app.wsgi_app) 91 print "Server running..." 92 httpd.serve_forever()
14 def handle(self, *args, **kwargs): 15 from control.server import app 16 if 'fifo' in kwargs: 17 app.fifo_path = kwargs['fifo'] 18 if 'manager' in kwargs: 19 app.manager_path = kwargs['manager'] 20 app.run('127.0.0.1', port=kwargs['port'])
7 def take_action(self, options): 8 if not options.settings: 9 raise RuntimeError("For start serverm --settings parameter" 10 " is mandatory!") 11 try: 12 settings_cls = load_class(options.settings) 13 except ImportError: 14 raise RuntimeError("Cannot load settings class: {0}".format(options.settings)) 15 16 from webtools.application import Application 17 app = Application(settings_cls()) 18 app.listen(8888) # TODO: parametrize this 19 20 import tornado.ioloop 21 print("Listeing on :{0}".format(8888)) 22 tornado.ioloop.IOLoop.instance().start()
122 def run_default_server(app, port): 123 servers["werkzeug"](app, port, server_host)
103 def run(self, **options): 104 """ 105 Runs the server, using the autoreloader if needed 106 """ 107 use_reloader = options['use_reloader'] 108 109 if use_reloader: 110 autoreload.main(self.inner_run, None, options) 111 else: 112 self.inner_run(None, **options)