-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.py
58 lines (51 loc) · 1.79 KB
/
server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from flask import Flask, jsonify
import threading
from main import run_daily
import os
import traceback
from logger import setup_logger
app = Flask(__name__)
logger = setup_logger(__name__)
@app.route('/', methods=['GET'])
def health_check():
try:
# Try to list config directory
import os
config_contents = os.listdir('/app/config') if os.path.exists('/app/config') else 'Directory not found'
return jsonify({
'status': 'healthy',
'config_path': '/app/config',
'config_contents': config_contents
}), 200
except Exception as e:
return jsonify({
'status': 'error',
'error': str(e)
}), 500
@app.route('/run', methods=['POST'])
def trigger_run():
try:
logger.info("Received trigger request")
# Debug: List all directories
import os
logger.info("Checking directories:")
logger.info(f"Current directory: {os.getcwd()}")
logger.info(f"Directory contents: {os.listdir('.')}")
if os.path.exists('/app/config'):
logger.info(f"Contents of /app/config: {os.listdir('/app/config')}")
else:
logger.error("/app/config directory not found")
run_daily()
logger.info("Run completed successfully")
return jsonify({'status': 'success', 'message': 'RSS summarizer run completed'}), 200
except Exception as e:
error_msg = f"Error during run: {str(e)}\n{traceback.format_exc()}"
logger.error(error_msg)
return jsonify({
'status': 'error',
'message': str(e),
'traceback': traceback.format_exc()
}), 500
if __name__ == '__main__':
port = int(os.environ.get('PORT', 8080))
app.run(host='0.0.0.0', port=port)