When trying to deploy the visualisation, there is no yaml file. We have written our own as follows:
service: default
runtime: python37
handlers:
-
url: /
static_files: sunburst.html
upload: sunburst.html
-
url: /scripts/(.)
static_files: scripts/\1
upload: scripts/(.)
-
url: /css/(.)
static_files: css/\1
upload: css/(.)
app.yaml (END)
Using this we can deploy the app using
gcloud app deploy inside the visualisation directory. However, our app does not currently work properly. If you could provide your app.yaml that would be very helpful.
Also, we are currently trying to figure out how to deploy debugging but the instructions say we should deploy some code in the main.py file, but our app does not have a main.py file.
When trying to deploy the visualisation, there is no yaml file. We have written our own as follows:
service: default
runtime: python37
handlers:
url: /
static_files: sunburst.html
upload: sunburst.html
url: /scripts/(.)
static_files: scripts/\1
upload: scripts/(.)
url: /css/(.)
static_files: css/\1
upload: css/(.)
app.yaml (END)
Using this we can deploy the app using
gcloud app deploy inside the visualisation directory. However, our app does not currently work properly. If you could provide your app.yaml that would be very helpful.
Also, we are currently trying to figure out how to deploy debugging but the instructions say we should deploy some code in the main.py file, but our app does not have a main.py file.