mirror of
				https://github.com/bensuperpc/infrastructure.git
				synced 2025-10-31 00:56:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			186 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			186 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from flask import Flask
 | |
| app = Flask(__name__)
 | |
| 
 | |
| @app.route("/")
 | |
| def hello():
 | |
|     return "<h1 style='color:blue'>Hello There!</h1>"
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     app.run(host='0.0.0.0')
 |