I'm trying to deploy a Flask app on Google Compute Engine. I have it all configured, but when I try to deploy it with gcloud app deploy, it says ModuleNotFoundError: No module named 'main'. This is my file structure:
└── gpt-redteam-api/
├── app.yaml
├── main.py
└── ...other files
and I am deploying it from inside gpt-redteam-api. Is this a common problem/are there any elementary fixes I’m missing?