Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

343
Views
Is it possible to use python and node js at same time at same domain in google app engine?

I have created my project in python and google cloud datastore, now i want to create my project admin panel in node JS. Is there any way to use both python and node js on same domain on google cloud?

e,g my project url is http://lynkweb-165106.appspot.com/

and i run both node js and python over on above url

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Yes. You can develop the admin panel as a new, separate service/module of your app.

Services have code-level isolation (see Service isolation) so the choice of the GAE environment (standard/flexible) or the programming language used is done at the service level and can differ from a service to another inside the same application. See also is it possible to have a hybrid PHP+Java web application on Google App Engine?

As for the DNS mapping you can keep both services under the same domain, but you will need to establish clear, non-overlapping URL path patterns in your app.yaml (or equivalent) config files to be able to route the incoming requests to the proper service.

For example:

  • http://lynkweb-165106.appspot.com/app/ -> your existing app service
  • http://lynkweb-165106.appspot.com/admin/ -> your admin service

You may need to use a dispatch.yaml file for inter-module routing, see Routing with a dispatch file

You may be running in a few problems as first. When debugging pay attention to your catch-all app.yaml patterns like url: .* and check your logs (for all services) to see if the requests are being handled by the right module.

about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!