File size: 605 Bytes
74b60dd d3536e2 74b60dd 72cd03d 74b60dd 72cd03d 74b60dd d3536e2 74b60dd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
from flask import Flask, request, jsonify, send_from_directory
import os
app = Flask(__name__)
@app.route('/')
def index():
return send_from_directory('.', 'index.html')
@app.route('/<path:path>')
def static_files(path):
return send_from_directory('.', path)
@app.route('/log', methods=['POST'])
def log_action():
action_log = request.get_json()
log_file_path = os.path.join(app.root_path, 'user_actions.json')
with open(log_file_path, 'a') as f:
f.write(f"{action_log}\n")
return jsonify({"status": "success"}), 200
if __name__ == '__main__':
app.run(debug=True)
|