Probably a stupid question.
I'm new to google app engine. So I followed the tutorial and successfully deployed their HelloWorld app, where the final steps are done on the cloud shell.
Then I built my own app in flask on my local machine, tested it (pushed the repo to the project's cloud repo) and deployed it from the command line (gcloud app deploy
) and it works fine, anyone can use the app on their browser and I can also see the source code in the console website.
But I don't see any directories when I use the cloud shell. I get the prompt username@project-id:~$
but when I ls
, there's just one README file and no other directories, therefore I can't use the devapp_sever.py
, gcloud app deploy
or any other shell function on this project.
But when I choose the hello world project that was created initially, the shell shows an src
directory which contains the app's code and I can use the shell and deploy the app from there.
What's happening here and what am I supposed to do.?