aboutsummaryrefslogblamecommitdiffstats
path: root/app.yaml
blob: f16bfd0160080b750e7a15ecd77056b47a54cadb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                           
# [START django_app]
runtime: python38

env_variables:
  DATABASE_PASSWORD: "mexpuswigmexpuswig"

handlers:
# This configures Google App Engine to serve the files in the app's static
# directory.
- url: /static
  static_dir: static/

# This handler routes all requests not caught above to your main app. It is
# required when static routes are defined, but can be omitted (along with
# the entire handlers section) when there are no static files defined.
- url: /.*
  script: auto
# [END django_app]