You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					13 lines
				
				284 B
			
		
		
			
		
	
	
					13 lines
				
				284 B
			| 
											2 years ago
										 | import uvicorn | ||
| 
											1 year ago
										 | from server import app, AppConfig  # noqa: F401 | ||
| 
											2 years ago
										 | 
 | ||
|  | 
 | ||
|  | if __name__ == '__main__': | ||
| 
											2 years ago
										 |     uvicorn.run( | ||
|  |         app='app:app', | ||
|  |         host=AppConfig.app_host, | ||
|  |         port=AppConfig.app_port, | ||
|  |         root_path=AppConfig.app_root_path, | ||
| 
											1 year ago
										 |         reload=AppConfig.app_reload, | ||
| 
											2 years ago
										 |     ) |