Problem: Run project locally using Pycharm with App Engine - google-app-engine

Hey guys, I'm facing a problem when i want to run a web project locally using in PyCharm using App Engine. After running the project on local.dev:8080 the web project does not appear see the image below.
The problem
So please if anyone could help ?
However I'm satisfying all the requirements"
- Python 2.7
- Google App Engine SDK
Thanks

It is something related with the SSL that is using a self signed certificate. I found that this is a Firefox issue please try with another browser
As is mentioned please use HTTP or another browser, even you can try to run your flask application manually in order to check his functionality.

Related

IntelliJ: cannot deploy to Google App Engine (Standard)

The IDE complains about no Deployment selected, but from the picture I can't pick one.
I have upgraded IntelliJ to the latest. I am planning to reinstall everything.
Suggestions?
There should be an artifact displayed:
Make sure you have a war artifact defined in the Project Structure | Artifacts.
If the issue persists, please report a bug and attach a sample project to reproduce.
Artifact options available out of the box in IntelliJ IDEA Ultimate:
If you don't see the Web Application options, you need to make sure that all the plug-ins are enabled. You can also just delete disabled_plugins.txt file from the IDE CONFIG directory and restart the IDE.
In case you are still running into issues:
It actually looks like you are using the Cloud Tools for IntelliJ plugin (https://github.com/GoogleCloudPlatform/google-cloud-intellij) and not the App Engine plugin bundled in IDEA Ultimate as in the accepted answer.
You can refer to the following documentation for deployment to the App Engine standard environment:
https://cloud.google.com/tools/intellij/docs/deploy-std
Also a couple things to check:
You should have an app engine standard facet
You should have an exploded-war artifact:
Try the following action:
Tools > Google Cloud Tools > Add App Engine support > Google App Engine Standard and see if this resolves the problem.
If none of this helps, perhaps you can post some screenshots of your artifact / module structure under project settings.
So OK, at the end I was using IntelliJ Community which doesn't support deploying to Google App Engine anymore (although it's bizarre the plugin is available). Apparently one of the latest updates disable whatever minimal support was there, as I was able to deploy to GAE just a few weeks ago.

Running Joomla on Google App Engine

I have joomla running locally on the development environment of Google App Engine, but once I deploy it to GAE I just get this error:
Error displaying the error page: Application Instantiation Error
Since google claims that the development server is the identical copy of the production environment, how come joomla is not working on GAE?
I've used a couple of days trying to figure out how to debug this, in order to make joomla work, but I could really use some tips for debugging.
How do you guys debug in the production environment?
Any of you got joomla 3.2 running on GAE yet?
cheers!
I figured it out. Read the instructions here: http://forum.joomla.org/viewtopic.php?f=706&t=828565&p=3114492

Different behaviour in Eclipse with Google Eclipse Plugin than Google App Engine

I have a Google App Engine project created in Eclipse with the Google Eclipse Plugin.
When I run some of its services locally with the GAE SDK they work fine, but when I deploy the app on "the real" Google App Engine and try to access any of these services, chrome throws the following error:
Error: Server Error
The server encountered an error and could not complete your request.
If the problem persists, please report your problem and mention this error message and the query that caused it.
On the other hand, I also get THIS error locally when trying to call an upload method.
All of this is someone else's project and it's meant to work, besides I don't think the error is related to the code, hence, I don't think it's worth it posting it here.

Deploying PlayFramework Application to Google App Engine

For my new project I am planning to use PlayFramework and Google App-Engine. I was trying to create a sample application in playframework and tried to deploy it to app-engine.
it says the application is deployed successfully, but when I hit the url of my application
it shows a message "Your application is ready", But does not show the home page of my application.
I am using Play Framework 1.2 and GAE-1.4 plugin. I tried to deploy the application using the plugin and also using "appcfg".
The application works fine in local development mode but as soon as I deploy it to app-engine, the home page is replaced by "Your application is ready" message.
Can u guys tell me if I am doing anything wrong with the deployment of play-framework? I tried searching if anybody faced similar kind of issues in both google and SO but was not able to find any help.
Also, I read some post that GAE plugin does not work with Play-Framework 2.0(Note : I am using Play 1.2 in the above example) . I would like to know How can I deploy a play2.0 application in appengine.
Thanks a lot in advance!!!
Did you add application name and version number in appengine-web.xml before deploy?

Page not found on deploying Django-nonrel to Google App Engine

I'm a newbie to Google App Engine but have played around with Django in the past so I am trying to use Django-nonrel with GAE.
There's not much information online, but have followed these tutorials successfully:
http://blog.sidmitra.com/getting-up-and-running-with-django-nonrel
http://www.allbuttonspressed.com/projects/djangoappengine
I have managed to get setup fine and can get the 'It worked' page on local. However, when I upload my project to the Google App Engine Server I get a page with the following:
"Nonrel-testapp
The page you requested could not be found.
Powered by Django-nonrel"
I have used the following to upload:
python2.5 manage.py deploy
What am I doing wrong?
Are there any guides for uploading your Django app?
Thanks
You're not doing anything wrong. On the production server DEBUG is False, so you won't see that little "It worked" page. Since you're not the first one who was irritated by this I've just added a custom "It works!" page which also shows up on the production server. Just update your testapp source to see it.

Resources