add main.py entrypoint for deploy

This commit is contained in:
2026-03-22 09:29:43 +09:00
parent 7f45211276
commit 49e033f373
3 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"timestamp": "2026-03-22T00:28:24.567Z",
"backgroundTasks": [],
"sessionStartTimestamp": "2026-03-22T00:24:25.089Z",
"sessionId": "f97eeeba-f610-41c4-9533-51eb495908b8"
}

View File

@@ -0,0 +1 @@
{"session_id":"f97eeeba-f610-41c4-9533-51eb495908b8","transcript_path":"C:\\Users\\User\\.claude\\projects\\D--PRJ-poly-company-dtr2-poly\\f97eeeba-f610-41c4-9533-51eb495908b8.jsonl","cwd":"D:\\PRJ\\poly_company\\dtr2_poly\\polymarket-arb-bot","model":{"id":"claude-opus-4-6[1m]","display_name":"Opus 4.6 (1M context)"},"workspace":{"current_dir":"D:\\PRJ\\poly_company\\dtr2_poly\\polymarket-arb-bot","project_dir":"D:\\PRJ\\poly_company\\dtr2_poly","added_dirs":["D:/PRJ/poly_company/dtr2_poly"]},"version":"2.1.78","output_style":{"name":"default"},"cost":{"total_cost_usd":0.6991065,"total_duration_ms":317862,"total_api_duration_ms":61650,"total_lines_added":7,"total_lines_removed":0},"context_window":{"total_input_tokens":33,"total_output_tokens":2230,"context_window_size":1000000,"current_usage":{"input_tokens":3,"output_tokens":148,"cache_creation_input_tokens":408,"cache_read_input_tokens":58264},"used_percentage":6,"remaining_percentage":94},"exceeds_200k_tokens":false}

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
"""Entry point for deployment — runs paper trading bot."""
import subprocess
import sys
if __name__ == "__main__":
sys.exit(subprocess.call([sys.executable, "paper_trade.py"] + sys.argv[1:]))