Hi, I have a simple python app that use websocket from a forex exchange api.
Then it use dataa to just analysis and write logs. (no provide API or web)
I deployed on Background worker, but it always stuck at “==> Running ‘python main.py’”
In my “main.py”, I set print method at the top of file but no log is found on Render logs.
import json
import logging
print("Prepare start")
def main():
print("Prepare start")
if __name__ == "__main__":
main()
Can anyone tell me what would be the right command for this application?
Thanks for your attention!