Initial project setup with Flask, including main application file, requirements, and basic HTML template.
This commit is contained in:
		
							
								
								
									
										12
									
								
								app/main.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								app/main.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,12 @@
 | 
			
		||||
from flask import Flask
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
app = Flask(__name__)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@app.route("/")
 | 
			
		||||
def hello_world():
 | 
			
		||||
    return "<p>Hello, World!</p>"
 | 
			
		||||
 | 
			
		||||
if __name__ == "__main__":
 | 
			
		||||
    app.run() 
 | 
			
		||||
							
								
								
									
										2
									
								
								requirements.txt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								requirements.txt
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
			
		||||
Flask==3.1.2
 | 
			
		||||
Werkzeug==3.1.3 
 | 
			
		||||
							
								
								
									
										0
									
								
								static/css/style.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								static/css/style.css
									
									
									
									
									
										Normal file
									
								
							
							
								
								
									
										10
									
								
								templates/index.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								templates/index.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
			
		||||
<html lang="pt-br">
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="UTF-8">
 | 
			
		||||
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
 | 
			
		||||
    <title>CtrlCash</title>
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
    
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
		Reference in New Issue
	
	Block a user