Deploying Flask application on Google App Engine
up vote
0
down vote
favorite
This is my first web app I've ever developed, so even though I thoroughly searched everything I could for the Google App Engine, I'm afraid that my terminology and Google fu simply isn't good enough for what I need.
When I open up my terminal and type "python main.py", I can see that it works correctly on localhost.
Now I am trying to host this application on the Google App Engine. I have spent hours watching Youtube tutorials and following setup guides, trying to emulate their file structure and file contents. Whenever I deploy my app, I get the "500- Server Error: The server encountered an error and could not complete your request."
Here is my code: https://github.com/csherrod5/csherrod5.github.io
Here is an example of the types of guides I've been following: https://medium.freecodecamp.org/how-to-build-a-web-app-using-pythons-flask-and-google-app-engine-52b1bb82b221
I'm hoping someone is kind enough to help me diagnose my problem.
Thank you to everyone who stops by
python google-app-engine flask
|
show 2 more comments
up vote
0
down vote
favorite
This is my first web app I've ever developed, so even though I thoroughly searched everything I could for the Google App Engine, I'm afraid that my terminology and Google fu simply isn't good enough for what I need.
When I open up my terminal and type "python main.py", I can see that it works correctly on localhost.
Now I am trying to host this application on the Google App Engine. I have spent hours watching Youtube tutorials and following setup guides, trying to emulate their file structure and file contents. Whenever I deploy my app, I get the "500- Server Error: The server encountered an error and could not complete your request."
Here is my code: https://github.com/csherrod5/csherrod5.github.io
Here is an example of the types of guides I've been following: https://medium.freecodecamp.org/how-to-build-a-web-app-using-pythons-flask-and-google-app-engine-52b1bb82b221
I'm hoping someone is kind enough to help me diagnose my problem.
Thank you to everyone who stops by
python google-app-engine flask
App engine has good logging. If you go to the app engine console -> logging you should be able to see the stacktrace which will tell you why it's crashing.
– Mark Meyer
Nov 20 at 4:11
Pro-tip: change your secret keys immediately since it appears you uploaded them. In the future, I'd suggest keeping them in a configuration file that doesn't go up with your source control and gets loaded at runtime
– TheIncorrigible1
Nov 20 at 4:14
@TheIncorrigible1 thank you for the tip, I will take action accordingly.
– Connor Sherrod
Nov 20 at 5:50
@MarkMeyer Can you elaborate on this? I am on Google Cloud's Logging Page, I selected my project, but it just gives me an infinite loading circle
– Connor Sherrod
Nov 20 at 5:51
Update, all I see in my console logs are 4 logs that all look like this: link
– Connor Sherrod
Nov 20 at 5:59
|
show 2 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
This is my first web app I've ever developed, so even though I thoroughly searched everything I could for the Google App Engine, I'm afraid that my terminology and Google fu simply isn't good enough for what I need.
When I open up my terminal and type "python main.py", I can see that it works correctly on localhost.
Now I am trying to host this application on the Google App Engine. I have spent hours watching Youtube tutorials and following setup guides, trying to emulate their file structure and file contents. Whenever I deploy my app, I get the "500- Server Error: The server encountered an error and could not complete your request."
Here is my code: https://github.com/csherrod5/csherrod5.github.io
Here is an example of the types of guides I've been following: https://medium.freecodecamp.org/how-to-build-a-web-app-using-pythons-flask-and-google-app-engine-52b1bb82b221
I'm hoping someone is kind enough to help me diagnose my problem.
Thank you to everyone who stops by
python google-app-engine flask
This is my first web app I've ever developed, so even though I thoroughly searched everything I could for the Google App Engine, I'm afraid that my terminology and Google fu simply isn't good enough for what I need.
When I open up my terminal and type "python main.py", I can see that it works correctly on localhost.
Now I am trying to host this application on the Google App Engine. I have spent hours watching Youtube tutorials and following setup guides, trying to emulate their file structure and file contents. Whenever I deploy my app, I get the "500- Server Error: The server encountered an error and could not complete your request."
Here is my code: https://github.com/csherrod5/csherrod5.github.io
Here is an example of the types of guides I've been following: https://medium.freecodecamp.org/how-to-build-a-web-app-using-pythons-flask-and-google-app-engine-52b1bb82b221
I'm hoping someone is kind enough to help me diagnose my problem.
Thank you to everyone who stops by
python google-app-engine flask
python google-app-engine flask
asked Nov 20 at 4:08
Connor Sherrod
42
42
App engine has good logging. If you go to the app engine console -> logging you should be able to see the stacktrace which will tell you why it's crashing.
– Mark Meyer
Nov 20 at 4:11
Pro-tip: change your secret keys immediately since it appears you uploaded them. In the future, I'd suggest keeping them in a configuration file that doesn't go up with your source control and gets loaded at runtime
– TheIncorrigible1
Nov 20 at 4:14
@TheIncorrigible1 thank you for the tip, I will take action accordingly.
– Connor Sherrod
Nov 20 at 5:50
@MarkMeyer Can you elaborate on this? I am on Google Cloud's Logging Page, I selected my project, but it just gives me an infinite loading circle
– Connor Sherrod
Nov 20 at 5:51
Update, all I see in my console logs are 4 logs that all look like this: link
– Connor Sherrod
Nov 20 at 5:59
|
show 2 more comments
App engine has good logging. If you go to the app engine console -> logging you should be able to see the stacktrace which will tell you why it's crashing.
– Mark Meyer
Nov 20 at 4:11
Pro-tip: change your secret keys immediately since it appears you uploaded them. In the future, I'd suggest keeping them in a configuration file that doesn't go up with your source control and gets loaded at runtime
– TheIncorrigible1
Nov 20 at 4:14
@TheIncorrigible1 thank you for the tip, I will take action accordingly.
– Connor Sherrod
Nov 20 at 5:50
@MarkMeyer Can you elaborate on this? I am on Google Cloud's Logging Page, I selected my project, but it just gives me an infinite loading circle
– Connor Sherrod
Nov 20 at 5:51
Update, all I see in my console logs are 4 logs that all look like this: link
– Connor Sherrod
Nov 20 at 5:59
App engine has good logging. If you go to the app engine console -> logging you should be able to see the stacktrace which will tell you why it's crashing.
– Mark Meyer
Nov 20 at 4:11
App engine has good logging. If you go to the app engine console -> logging you should be able to see the stacktrace which will tell you why it's crashing.
– Mark Meyer
Nov 20 at 4:11
Pro-tip: change your secret keys immediately since it appears you uploaded them. In the future, I'd suggest keeping them in a configuration file that doesn't go up with your source control and gets loaded at runtime
– TheIncorrigible1
Nov 20 at 4:14
Pro-tip: change your secret keys immediately since it appears you uploaded them. In the future, I'd suggest keeping them in a configuration file that doesn't go up with your source control and gets loaded at runtime
– TheIncorrigible1
Nov 20 at 4:14
@TheIncorrigible1 thank you for the tip, I will take action accordingly.
– Connor Sherrod
Nov 20 at 5:50
@TheIncorrigible1 thank you for the tip, I will take action accordingly.
– Connor Sherrod
Nov 20 at 5:50
@MarkMeyer Can you elaborate on this? I am on Google Cloud's Logging Page, I selected my project, but it just gives me an infinite loading circle
– Connor Sherrod
Nov 20 at 5:51
@MarkMeyer Can you elaborate on this? I am on Google Cloud's Logging Page, I selected my project, but it just gives me an infinite loading circle
– Connor Sherrod
Nov 20 at 5:51
Update, all I see in my console logs are 4 logs that all look like this: link
– Connor Sherrod
Nov 20 at 5:59
Update, all I see in my console logs are 4 logs that all look like this: link
– Connor Sherrod
Nov 20 at 5:59
|
show 2 more comments
1 Answer
1
active
oldest
votes
up vote
0
down vote
There's no lib folder in your application directory, so App Engine won't have any of the third party libraries you're trying to import.
You've correctly added the appengine_config.py file needed to vendorise third-party libraries, but you need to add the libraries you want to use to a 'lib' folder in your application directory.
Some of the libraries you want to use are built into the runtime, you just have to add them to your app.yaml to use them.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
There's no lib folder in your application directory, so App Engine won't have any of the third party libraries you're trying to import.
You've correctly added the appengine_config.py file needed to vendorise third-party libraries, but you need to add the libraries you want to use to a 'lib' folder in your application directory.
Some of the libraries you want to use are built into the runtime, you just have to add them to your app.yaml to use them.
add a comment |
up vote
0
down vote
There's no lib folder in your application directory, so App Engine won't have any of the third party libraries you're trying to import.
You've correctly added the appengine_config.py file needed to vendorise third-party libraries, but you need to add the libraries you want to use to a 'lib' folder in your application directory.
Some of the libraries you want to use are built into the runtime, you just have to add them to your app.yaml to use them.
add a comment |
up vote
0
down vote
up vote
0
down vote
There's no lib folder in your application directory, so App Engine won't have any of the third party libraries you're trying to import.
You've correctly added the appengine_config.py file needed to vendorise third-party libraries, but you need to add the libraries you want to use to a 'lib' folder in your application directory.
Some of the libraries you want to use are built into the runtime, you just have to add them to your app.yaml to use them.
There's no lib folder in your application directory, so App Engine won't have any of the third party libraries you're trying to import.
You've correctly added the appengine_config.py file needed to vendorise third-party libraries, but you need to add the libraries you want to use to a 'lib' folder in your application directory.
Some of the libraries you want to use are built into the runtime, you just have to add them to your app.yaml to use them.
answered Nov 20 at 16:57
Christopher P
55815
55815
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53386082%2fdeploying-flask-application-on-google-app-engine%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
App engine has good logging. If you go to the app engine console -> logging you should be able to see the stacktrace which will tell you why it's crashing.
– Mark Meyer
Nov 20 at 4:11
Pro-tip: change your secret keys immediately since it appears you uploaded them. In the future, I'd suggest keeping them in a configuration file that doesn't go up with your source control and gets loaded at runtime
– TheIncorrigible1
Nov 20 at 4:14
@TheIncorrigible1 thank you for the tip, I will take action accordingly.
– Connor Sherrod
Nov 20 at 5:50
@MarkMeyer Can you elaborate on this? I am on Google Cloud's Logging Page, I selected my project, but it just gives me an infinite loading circle
– Connor Sherrod
Nov 20 at 5:51
Update, all I see in my console logs are 4 logs that all look like this: link
– Connor Sherrod
Nov 20 at 5:59