-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.yaml.sample
37 lines (34 loc) · 1.08 KB
/
app.yaml.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# APP ENGINE DEPLOYMENT SAMPLE (STANDARD ENVIRONMENT)
# This is a sample that you can use as a template to deploy Strautomator to
# Google App Engine (standard environment). Please note that you must update
# the environment variables to your own secrets and credentials.
runtime: nodejs20
instance_class: F2
automatic_scaling:
max_instances: 2
handlers:
- url: /_nuxt
static_dir: .nuxt/dist/client
secure: always
- url: /(.*\.(gif|png|jpg|ico|txt))$
static_files: static/\1
upload: static/.*\.(gif|png|jpg|ico|txt)$
secure: always
- url: /.*
script: auto
secure: always
env_variables:
NODE_ENV: "production"
HOST: "0.0.0.0"
SMU_cookie_secret: "xxx"
SMU_database_crypto_key: "xxx"
SMU_database_crypto_iv: "xxx"
SMU_gcp_projectId: "xxx"
SMU_mailer_from: "xxx"
SMU_mailer_smtp_auth_user: "xxx"
SMU_mailer_smtp_auth_pass: "xxx"
SMU_maps_api_key: "xxx"
SMU_strava_api_clientId: "xxx"
SMU_strava_api_clientSecret: "xxx"
SMU_strava_api_verifyToken: "xxx"
SMU_weather_openweathermap_secret: "xxx"