mirror of
https://github.com/ilri/csv-metadata-quality-web.git
synced 2025-07-06 22:41:40 +02:00
app.yaml: Try to serve static CSS directly
Google App Engine is currently caching an old version of my CSS, so I am trying to get it to use the correct version. Let's try serving it directly from the filesystem. See: https://cloud.google.com/appengine/docs/standard/php/getting-started/serving-static-files
This commit is contained in:
4
app.yaml
4
app.yaml
@ -1,2 +1,6 @@
|
|||||||
runtime: python39
|
runtime: python39
|
||||||
entrypoint: gunicorn -b :$PORT main:app
|
entrypoint: gunicorn -b :$PORT main:app
|
||||||
|
|
||||||
|
handlers:
|
||||||
|
- url: /static/css
|
||||||
|
static_dir: static/css
|
||||||
|
Reference in New Issue
Block a user