[google-appengine] Re: Site in app engine allows downloads of PDF over HTTP but not HTTPS

2019-01-26 Thread Nikos Katsikanis
ok thx

On Friday, January 25, 2019 at 7:26:44 PM UTC, Nicolas (Google Cloud 
Platform Support) wrote:
>
> Hi Nikos,
>
> I was able to reproduce this issue only by accessing your website’s home 
> page first, this added a Service worker cookie to my browser which seems to 
> be the root cause of this behavior as when removed the page 
> https://quantumjs.com/brochures/JavaScript-Bootcamp.pdf loads correctly.
>
> If you have further questions please note that you would have better 
> assistance from the community by posting in StackOverflow, where you will 
> receive more visibility, resulting in a faster resolution. 
>
> The purpose of Google Groups is intended for general discussion about our 
> products. 
>
>
> On Tuesday, January 22, 2019 at 9:23:39 AM UTC-5, Nikos Katsikanis wrote:
>>
>> app engine completely scrambles it 
>>
>> On Saturday, January 19, 2019 at 4:00:12 PM UTC+1, Nikos Katsikanis wrote:
>>>
>>> Any ideas why this works
>>>
>>> http://quantumjs.com/brochures/JavaScript-Bootcamp.pdf
>>>
>>> but https doesn't?
>>>
>>> https://quantumjs.com/brochures/JavaScript-Bootcamp.pdf
>>>
>>>
>>> using
>>>
>>> runtime: python27
>>> api_version: 1
>>> threadsafe: true
>>> handlers:
>>>   - url: /(.*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf))$
>>> static_files: \1
>>> upload: .*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf)$
>>> # catch all handler to index.html
>>>   - url: /.*
>>> static_files: index.html
>>> upload: index.html
>>>
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/7c8fecdc-e64a-4c6b-abea-06a697b70ea2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Site in app engine allows downloads of PDF over HTTP but not HTTPS

2019-01-22 Thread Nikos Katsikanis
app engine completely scrambles it 

On Saturday, January 19, 2019 at 4:00:12 PM UTC+1, Nikos Katsikanis wrote:
>
> Any ideas why this works
>
> http://quantumjs.com/brochures/JavaScript-Bootcamp.pdf
>
> but https doesn't?
>
> https://quantumjs.com/brochures/JavaScript-Bootcamp.pdf
>
>
> using
>
> runtime: python27
> api_version: 1
> threadsafe: true
> handlers:
>   - url: /(.*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf))$
> static_files: \1
> upload: .*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf)$
> # catch all handler to index.html
>   - url: /.*
> static_files: index.html
> upload: index.html
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/104de8de-f1fd-41d1-aff4-94db8729a7f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Site in app engine allows downloads of PDF over HTTP but not HTTPS

2019-01-19 Thread Nikos Katsikanis
Any ideas why this works

http://quantumjs.com/brochures/JavaScript-Bootcamp.pdf

but https doesn't?

https://quantumjs.com/brochures/JavaScript-Bootcamp.pdf


using

runtime: python27
api_version: 1
threadsafe: true
handlers:
  - url: /(.*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf))$
static_files: \1
upload: .*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf)$
# catch all handler to index.html
  - url: /.*
static_files: index.html
upload: index.html


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/91b02ed8-175e-4fd4-9753-d16b1ff0cae8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2019-01-07 Thread Nikos Katsikanis
awesome, I deleted the old project to get the custom domain free, any idea 
how long I need to wait?

Point your domain to qunatumvue
Google will add a free, auto-renewing SSL certificate to your application 
for security.
The following domain and subdomains will be mapped:

   - www.quantumjs.com
   - quantumjs.com
   - 



   - *www.quantumjs.com* is already mapped to a project.
   

Also what does \1 mean here in this yaml?

handlers:
  - url: /(.*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf))$
static_files: \1
upload: .*\.(js|css|png|jpg|svg|ttf|ico|manifest|pdf)$
# catch all handler to index.html
  - url: /.*
static_files: index.html
upload: index.html


On Friday, January 4, 2019 at 8:57:10 PM UTC+2, George (Cloud Platform 
Support) wrote:
>
> Hi Nikos, 
>
> Detailing the actions to be taken: 
>
> 1) redeploy your app with an empty application: you can read needed 
> details on the "Deploying the Application" documentation page 
> 
> . 
>
> 2) create an app.yaml that uses only static files. You can check the 
> "Configuring 
> the app to use static files" sub-chapter on the "Serving Static Files" 
> page 
> 
> . 
>
> 3) stop your app using the "gcloud app versions stop command": check "gcloud 
> app versions stop" page 
> . 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/9eca3048-59eb-4b3a-a77f-7c59c150874b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2019-01-03 Thread Nikos Katsikanis
Is there a step by step guide for this? I'm not sure about the steps you 
propose.

On Thursday, January 3, 2019 at 5:59:04 PM UTC+2, George (Cloud Platform 
Support) wrote:
>
> Hello Nikos, 
>
> You seem to want to stop your default service, which is not possible. This 
> is why your button is greyed out. To stop this service, you need to redeploy 
> your app with an empty application, and create an app.yaml that uses only 
> static files. Once this is done, you can stop your app using thegcloud 
> app versions stop VERSION_ID command, where "VERSION_ID" is the version of 
> the newly deployed empty application. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/97426197-076f-4162-ba62-74707a92ffc4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2019-01-03 Thread Nikos Katsikanis
This UI is confusing, how do I stop this service?



On Saturday, December 22, 2018 at 4:22:21 PM UTC+2, Nikos Katsikanis wrote:
>
> It worked now https://issuetracker.google.com/issues/121345412
>
> On Saturday, December 22, 2018 at 1:01:29 PM UTC, Nikos Katsikanis wrote:
>>
>> Sorry even if I only put text, I can't submit anything. What component am 
>> I supposed to put?
>>
>>
>>
>> On Monday, December 3, 2018 at 6:07:25 PM UTC, Katayoon (Cloud Platform 
>> Support) wrote:
>>>
>>> Hi Nikos,
>>>
>>> There is a likelihood that you have missed filling some required fields 
>>> or your message exceeds the maximum of the allowed message size. If so, 
>>> there should be an error message on top of the page. You may send the 
>>> output of the commands or the long error messages via attachment.
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/619b531a-ae0f-4524-9b79-2ec7162c931b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2018-12-22 Thread Nikos Katsikanis
It worked now https://issuetracker.google.com/issues/121345412

On Saturday, December 22, 2018 at 1:01:29 PM UTC, Nikos Katsikanis wrote:
>
> Sorry even if I only put text, I can't submit anything. What component am 
> I supposed to put?
>
>
>
> On Monday, December 3, 2018 at 6:07:25 PM UTC, Katayoon (Cloud Platform 
> Support) wrote:
>>
>> Hi Nikos,
>>
>> There is a likelihood that you have missed filling some required fields 
>> or your message exceeds the maximum of the allowed message size. If so, 
>> there should be an error message on top of the page. You may send the 
>> output of the commands or the long error messages via attachment.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/4f5808b2-8f51-4929-b256-5afe84c5476f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2018-12-22 Thread Nikos Katsikanis
Sorry even if I only put text, I can't submit anything. What component am I 
supposed to put?



On Monday, December 3, 2018 at 6:07:25 PM UTC, Katayoon (Cloud Platform 
Support) wrote:
>
> Hi Nikos,
>
> There is a likelihood that you have missed filling some required fields or 
> your message exceeds the maximum of the allowed message size. If so, there 
> should be an error message on top of the page. You may send the output of 
> the commands or the long error messages via attachment.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/86b33cab-8624-46f8-9359-e99024448fe8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2018-12-01 Thread Nikos Katsikanis
thanks, I can't seem to submit my issue: buttons greyed out



On Wednesday, November 28, 2018 at 8:27:10 PM UTC, George (Cloud Platform 
Support) wrote:
>
> Hi Nikos, 
>
> You app's logs show errors similar to: 
>
> methodName: "google.appengine.v1.Versions.CreateVersion"  
>
> "status: {
>code:  3
>details: [
> 0: {
>  @type:  "type.googleapis.com/google.rpc.BadRequest"  
>  fieldViolations: [
>   0: {
>description:  "Value "dist/\1$" must be a valid regular expression. 
> Details: invalid escape sequence."
>field:  "version.handlers[0].static_files.upload_path_regex"
>   }
>  ]
> }
>]
>message:  "The request is invalid."
>   }
>  }
>  receiveTimestamp:  "2018-07-30T10:03:55.483948799Z"  
>  resource: {
>   labels: {
>module_id:  "default"
>project_id:  "***"
>version_id:  "20180730t110349"
>   }
>   type:  "gae_app"   
>  }
>  severity:  "ERROR"  
>  timestamp:  "2018-07-30T10:03:55.109Z"  
> }
>
> This seems to point towards an error in your code; worthwhile 
> investigating. In any case, for a proper in-depth investigation, you are at 
> an advantage posting your issue in the Public Issue Tracker 
> . Confidential communication can easily 
> be set up, to avoid publicly revealing details such as your project ID; you 
> can easily follow all developments and solutions on thread. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/bc6c9e9b-3b8c-4838-bd82-f3037dd761df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: Pushed my site with deploy but old one remains

2018-11-20 Thread Nikos Katsikanis
Thx!

The yaml

runtime: python27
api_version: 1
threadsafe: true

handlers:
  - url: /
static_files: dist/index.html
upload: dist/index.html

  - url: /.*
static_files: dist/index.html
upload: dist/index.html

skip_files:
  - media
  - node_modules
  - public
  - src
  - tests
  - .git
  - .history


This is the debug output:

ROR: (gcloud.app.deploy) argument --verbosity: Invalid choice: 'debug.'. 
Did you mean 'debug'?
Usage: gcloud app deploy [DEPLOYABLES ...] [optional flags]
  optional flags may be  --bucket | --help | --image-url | --promote |
 --stop-previous-version | --version

For detailed information on this command and its flags, run:
  gcloud app deploy --help
➜  quantumvue git:(master) ✗ gcloud app deploy --verbosity=debug 
DEBUG: Running [gcloud.app.deploy] with arguments: [--verbosity: "debug"]
INFO: Refreshing access_token
DEBUG: API endpoint: [https://appengine.googleapis.com/], API version: [v1]
Services to deploy:

descriptor:  [/Users/nikos/WebstormProjects/quantumvue/app.yaml]
source:  [/Users/nikos/WebstormProjects/quantumvue]
target project:  [fluid-griffin-211109]
target service:  [default]
target version:  [20181120t180650]
target url:  [https://fluid-griffin-211109.appspot.com]


Do you want to continue (Y/n)?  y

DEBUG: No bucket specified, retrieving default bucket.
DEBUG: Using bucket [gs://staging.fluid-griffin-211109.appspot.com].
Beginning deployment of service [default]...
INFO: Ignoring directory [.git]: Directory matches ignore regex.
INFO: Ignoring file [.gitignore]: File matches ignore regex.
INFO: Ignoring directory [.history]: Directory matches ignore regex.
INFO: Ignoring directory [media]: Directory matches ignore regex.
INFO: Ignoring directory [node_modules]: Directory matches ignore regex.
INFO: Ignoring directory [public]: Directory matches ignore regex.
INFO: Ignoring directory [src]: Directory matches ignore regex.
INFO: Ignoring directory [tests]: Directory matches ignore regex.
DEBUG: Skipping upload of [dist/img/icons/favicon-32x32.png]
DEBUG: Skipping upload of [dist/manifest.json]
DEBUG: Skipping upload of 
[dist/precache-manifest.6a0655e517d145bc74f2ecca888e9b2f.js]
DEBUG: Skipping upload of [dist/img/training.f3c2b919.jpg]
DEBUG: Skipping upload of [dist/fonts/sofachrome.regular.444a89a5.ttf]
DEBUG: Skipping upload of [dist/img/icons/android-chrome-512x512.png]
DEBUG: Skipping upload of [source-context.json]
DEBUG: Skipping upload of [dist/img/cityn.1fdfe758.jpg]
DEBUG: Skipping upload of [.idea/misc.xml]
DEBUG: Skipping upload of [app.yaml]
DEBUG: Skipping upload of [.idea/encodings.xml]
DEBUG: Skipping upload of [CNAME]
DEBUG: Skipping upload of [dist/img/icons/safari-pinned-tab.svg]
DEBUG: Skipping upload of [.postcssrc.js]
DEBUG: Skipping upload of [dist/img/icons/mstile-150x150.png]
DEBUG: Skipping upload of [dist/favicon.ico]
DEBUG: Skipping upload of [dist/img/ewan.82cb9de3.jpg]
DEBUG: Skipping upload of [dist/img/icons/favicon-16x16.png]
DEBUG: Skipping upload of [.idea/inspectionProfiles/Project_Default.xml]
DEBUG: Skipping upload of [dist/img/icons/apple-touch-icon.png]
DEBUG: Skipping upload of [dist/img/icons/apple-touch-icon-152x152.png]
DEBUG: Skipping upload of [dist/index.html]
DEBUG: Skipping upload of [vue.config.js]
DEBUG: Skipping upload of [dist/logometa.png]
DEBUG: Skipping upload of [dist/img/handshake.b89e0fd3.jpg]
DEBUG: Skipping upload of [dist/img/agile_board.066ff473.jpg]
DEBUG: Skipping upload of [dist/img/canary.e66a59f9.jpg]
DEBUG: Skipping upload of [dist/img/cowork.e6fc9afc.jpg]
DEBUG: Skipping upload of [dist/brochures/Seminar Brochure.pdf]
DEBUG: Skipping upload of [.idea/quantumvue.iml]
DEBUG: Skipping upload of [.editorconfig]
DEBUG: Skipping upload of [dist/js/chunk-vendors.5722bf90.js.map]
DEBUG: Skipping upload of [dist/css/chunk-vendors.8e406b77.css]
DEBUG: Skipping upload of [dist/brochures/TypeScript-Bootcamp.pdf]
DEBUG: Skipping upload of [dist/brochures/JavaScript-Bootcamp.pdf]
DEBUG: Skipping upload of [.DS_Store]
DEBUG: Skipping upload of [dist/img/icons/apple-touch-icon-120x120.png]
DEBUG: Skipping upload of [dist/socialimg.jpg]
DEBUG: Skipping upload of [dist/img/nikosbw.e6567886.jpg]
DEBUG: Skipping upload of [dist/img/radio2.1b187566.jpg]
DEBUG: Skipping upload of [dist/img/finbar.d45e4a7f.png]
DEBUG: Skipping upload of [package.json]
DEBUG: Skipping upload of [dist/img/icons/android-chrome-192x192.png]
DEBUG: Skipping upload of [dist/js/chunk-vendors.5722bf90.js]
DEBUG: Skipping upload of [dist/img/globe.93a63387.jpg]
DEBUG: Skipping upload of [dist/img/cedd.14a193c3.jpg]
DEBUG: Skipping upload of [dist/img/desk.ec72ba66.jpg]
DEBUG: Skipping upload of [dist/brochures/JavaScript and Recruiting 
Masterclass.pdf]
DEBUG: Skipping upload of [dist/img/citywhite.6466bcc3.jpg]
DEBUG: Skipping upload of [jest.config.js]
DEBUG: Skipping upload of [package-lock.json]
DEBUG: Skipping upload of [dist/img/icons/apple-touch-icon-76x76.png]
DEBUG: Skipping 

[google-appengine] Discord server for GCloud / Google App Engine

2018-11-20 Thread Nikos Katsikanis
Hey guys, I made this server which could do with some more experts to come 
and talk about app.yaml files etc. We are finding the docs a bit too sparse.

This is our Official invite link https://discord.gg/9yGuxRV

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/e406ab8b-7567-476b-a2c1-91046d714dd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Pushed my site with deploy but old one remains

2018-11-20 Thread Nikos Katsikanis
I pushed my app with  gcloud app deploy and it still remains the old one

https://fluid-griffin-211109.appspot.com/

I spun up a new app and deployed there and it worked.

Any ideas?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/3b924eb5-8d1e-465a-b0d6-c24630f91614%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: gcloud app deploy leaves files renamed with hashname in staging bucket

2018-11-19 Thread Nikos Katsikanis
OK, I REFRESHED THE PAGE, IT WORKS NOW!

On Monday, November 19, 2018 at 8:29:57 PM UTC, Nikos Katsikanis wrote:
>
> I am following the jist of this tutorial
>
>
> https://medium.com/@matryer/cloud-hack-how-to-get-production-ready-free-static-website-hosting-cbc2d25c5771
>
> and up deploying this project, see attached.
>
> However when navigating to the url generated all I see is
>
> Error: Not FoundThe requested URL / was not found on this server.
>
>
>
> Also I don't see any of my file names, just hashes, see attached
>
> ps I wish you could paste images inhere with cmd +v
>
> [image: Screen Shot 2018-11-19 at 20.29.33.png]
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/d22a96c2-e4af-42d7-a387-a4e7d67982f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Re: gcloud app deploy, uploads whole root directory even though app.yaml only specifics 1 upload directory

2018-11-19 Thread Nikos Katsikanis
thanks for that!

On Monday, November 19, 2018 at 7:35:22 PM UTC, Vitaly Bogomolov wrote:
>
> Hi, Nikos 
>
> You can use skip_files directive to reduce number of uploaded files
>
>
> https://cloud.google.com/appengine/docs/standard/python/config/appref#skip_files
>
> WBR, Vitaly
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/915562fe-3215-4516-b92b-e0e98f83ac6f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] gcloud app deploy, uploads whole root directory even though app.yaml only specifics 1 upload directory

2018-11-19 Thread Nikos Katsikanis
I have the following app.yaml:


runtime: python27
api_version: 1
threadsafe: true

handlers:
  - url: /
static_files: dist/index.html
upload: dist/index.html

  - url: /(.*)
static_files: dist/\1
upload: dist/(.*)




However, I have files outside of dist are also attempted to be uploaded:

ERROR: (gcloud.app.deploy) Cannot upload file 
[/Users/nikos/WebstormProjects/quantumvue/media/QUANTOM INFO INTRO .mp4], 
which has size [50597610] (greater than maximum allowed size of 
[33554432]). Please delete the file or add to the skip_files entry in your 
application .yaml file and try again.
➜  quantumvue git:(master) ✗ gcloud app deploy 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/c5b38986-c3a3-41cf-9196-2def4549eb9a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[google-appengine] Getting history mode to work with Vue app deployed on Google Cloud

2018-07-30 Thread Nikos Katsikanis
Can someone advise on this

https://stackoverflow.com/questions/51563340/getting-history-mode-to-work-with-vue-app-deployed-on-google-cloud

http://www.quantumjs.com/events works if you visit index first, but not if 
direct

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/10bc005d-60a6-4455-88e4-46fdfe13fb3a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Re: React JS routers doesn't work

2018-07-30 Thread Nikos Katsikanis
pls share your ap.yaml, I have the same issue with a vue app

On Friday, July 27, 2018 at 2:26:23 PM UTC+1, Birhanu Hailemariam wrote:
>
> That looks like it. Changed the first handler to this */(.*) *and the 
> send only to* / *and now got it work. Thanks, Jean!
>
> On Fri, Jul 27, 2018 at 12:26 AM 'Jean Juste-constant' via Google App 
> Engine > wrote:
>
>> It seems your first handlers is setting '/' with 'dist/index.html'. I 
>> would change the second handler to be more precise or simply add the 
>> wildcard: '/*'. This way any url other than the root '/' should refer to 
>> the static dir you've set. 
>>
>>
>> On Wednesday, July 25, 2018 at 5:23:34 PM UTC-4, Birhanu Hailemariam 
>> wrote:
>>>
>>> I checked the GCP documentation throughly prior to publishing my 
>>> question and there isn't any clear instruction for mapping ReactJS routes 
>>> correctly in *app.ymal *config handlers. And, I was wondering if I 
>>> cloud be missing something in my config or is it even possible achieving 
>>> this with App Engine at all!... Anyway, will continue looking for the 
>>> answer in other platform. Than you for the tips!
>>>
>>> On Wed, Jul 25, 2018 at 11:28 PM 'Katayoon (Cloud Platform Support)' via 
>>> Google App Engine > wrote:
>>>
 You may check your handler elements descriptions through this link 
 .
  


 Note that Google Groups are reserved for general Google Cloud 
 Platform-end product discussions and not for technical questions. For 
 further technical support, I recommend that you post your full 
 detailed question  to Stack 
 Overflow , using 
 the supported Cloud tags.

 -- 
 You received this message because you are subscribed to the Google 
 Groups "Google App Engine" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to google-appengi...@googlegroups.com .
 To post to this group, send email to google-a...@googlegroups.com 
 .
 Visit this group at https://groups.google.com/group/google-appengine.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/google-appengine/c95cee97-96a4-45e3-b619-63de54f3622e%40googlegroups.com
  
 
 .
 For more options, visit https://groups.google.com/d/optout.

>>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Google App Engine" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to google-appengi...@googlegroups.com .
>> To post to this group, send email to google-a...@googlegroups.com 
>> .
>> Visit this group at https://groups.google.com/group/google-appengine.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/google-appengine/aff8b2b7-08c4-4d45-a6cc-252e827d5f68%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/45a273bc-061d-4d50-aa40-20c2b130666f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.