Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# app.py
|
2 |
+
from flask import Flask, send_from_directory, jsonify, request
|
3 |
+
import os
|
4 |
+
|
5 |
+
app = Flask(__name__)
|
6 |
+
|
7 |
+
# Default simulation parameters
|
8 |
+
simulation_params = {
|
9 |
+
"brown_sphere": {"mass": 92, "position": [0, 0, 0]},
|
10 |
+
"green_sphere": {"mass": 29, "position": [5, 0, 5]},
|
11 |
+
"red_sphere": {"mass": 10, "position": [-5, 0, -5]},
|
12 |
+
"fluid_speed": 0.1
|
13 |
+
}
|
14 |
+
|
15 |
+
# Serve the frontend
|
16 |
+
@app.route('/')
|
17 |
+
def serve_index():
|
18 |
+
return send_from_directory('static', 'index.html')
|
19 |
+
|
20 |
+
# Serve static files (CSS, JS)
|
21 |
+
@app.route('/static/<path:path>')
|
22 |
+
def serve_static(path):
|
23 |
+
return send_from_directory('static', path)
|
24 |
+
|
25 |
+
# API to get simulation parameters
|
26 |
+
@app.route('/api/params', methods=['GET'])
|
27 |
+
def get_params():
|
28 |
+
return jsonify(simulation_params)
|
29 |
+
|
30 |
+
# API to update simulation parameters
|
31 |
+
@app.route('/api/params', methods=['POST'])
|
32 |
+
def update_params():
|
33 |
+
global simulation_params
|
34 |
+
data = request.get_json()
|
35 |
+
simulation_params.update(data)
|
36 |
+
return jsonify({"status": "success", "params": simulation_params})
|
37 |
+
|
38 |
+
if __name__ == '__main__':
|
39 |
+
port = int(os.environ.get('PORT', 7860)) # Default port for Hugging Face Spaces
|
40 |
+
app.run(host='0.0.0.0', port=port)
|