ConstantCoder's picture
Update app.py
74b60dd verified
raw
history blame
605 Bytes
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)