All Questions
Tagged with google-app-engine javascript
844 questions
0
votes
1
answer
256
views
Error Running Puppeteer on Google App Engine
I need some help running puppeteer on the app engine standard environment to generate pdfs. I have tried several configurations and followed the documentation but I can't get it to work.
Below is my ...
1
vote
0
answers
60
views
NextJS app caching gives error when deployed to app engine
Description : I have created a NextJS App and deployed it to Google App Engine.
Problem : When NextJS tries to cache the images and store it, app engine throws this error.
DEFAULT 2024-09-15T11:48:52....
1
vote
1
answer
80
views
Updating the Source Code of an App Deployed Through Google Cloud
I have an app hosted on Google Cloud service, and the code for the app is also on GitHub. I've made changes to the code on GitHub, but now I need to know how to update Google Cloud to reflect what I ...
0
votes
1
answer
56
views
How to Remove Rows Using Google Apps Script
I've tried at least 3 methods listed on this site, and none of them are getting rid of the rows that I don't want. Hoping someone can help get this function to execute.
I want a list of all Active ...
1
vote
0
answers
135
views
Google App Engine dispatch.yaml Routing to Default Service Instead of Specified Service for /api/* URLs
I'm experiencing a routing issue with my Google App Engine (GAE) environment where requests to my /api/* endpoints are being served by the default service, despite having specified routing rules in my ...
0
votes
1
answer
149
views
Invalid option name ("--modules-folder=/layers/google.nodejs.yarn/yarn_modules/node_modules") while deploying nextjs app to google app engine
I followed those steps:
distDir: 'build' in next.config.js
modified package.json
{
"name": "SHOP",
"version": "1.0.8",
"description": "...
0
votes
0
answers
40
views
ts files, available in final implementation (app engine) - google cloud
I'm implementing a project made in react, along with an api in node. after carrying out all the necessary steps to complete the implementation, I tested the application and saw that in the browser, ...
0
votes
1
answer
447
views
Angular i18n not working when pushing to production on Google App Engine
I'm experiencing an issue with an Angular application that uses i18n for internationalization. The application works perfectly fine when serving it locally, but I encounter problems when pushing it to ...
2
votes
1
answer
484
views
Google App Engine Node app not sending cookies in header
I have a Node app that I've deployed in Google App Engine. I am utilizing sessions in the back end to handle authorization to access certain features.
I'm using connect-pg-simple to handle my postgres ...
1
vote
1
answer
95
views
How to check if the current event is the last event in the series of events sent to webhook?
I am coding a google apps script web app to react events from telegram API with a chat bot. I've already set webhook to google webhook to collect events, so I can't use logger.log to get the log. ...
0
votes
1
answer
445
views
WebSocket connections failing on GCloud server
I'm running a Node server using Express and socket.io on Google Cloud. The page loads but the connection to the server gets refused immediately. I suspect I either have to configure my environment to ...
10
votes
4
answers
11k
views
Nuxt-image IPX not finding pictures in production with SSR (deployed on Google App Engine)
I'm running into an issue with Nuxt-image plugin on its latest version v0.7.1 : in production, images are not loading via nuxt-image and the default IPX provider.
I struggle to understand if this is ...
0
votes
1
answer
68
views
server.listen() vs app.listen() Google Apple Engine
I have a NodeJS + Express application.
When running on localhost, I use
const port = 3001;
server.listen(port, () => {
console.log(`App listening on port ${port}`);
});
When deploying to GAE, I ...
0
votes
3
answers
2k
views
How do I load my external javascript file into my index.html file [duplicate]
Trying to externally load my javascript file into my main html file. Script works fine when I load it internally.
index.html file below:
<!DOCTYPE html>
<html lang="en">
<...
0
votes
1
answer
123
views
How to get user info on a static page?
I'm hosting a static page/site on GCP App Engine (written in standard js/html/css), on a company domain ;
I know in localhost testing I can't get the user info in any way (which is fine, I'll hardcode ...