๐Ÿ“ฆ fredsa / instant-tty

๐Ÿ“„ app.yaml ยท 48 lines
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
38
39
40
41
42
43
44
45
46
47
48application: little-black-box
version: gitcommithash
api_version: 1
runtime: python27
threadsafe: true

handlers:
- url: /api/.*
  script: gae.main.APPLICATION

- url: /agent/.*
  script: gae.agent.APPLICATION

- url: /task/.*
  script: gae.task.APPLICATION
  login: admin

- url: /bootstrap
  static_dir: bootstrap

- url: (/|/oauth2callback)
  static_files: app/index.html
  upload: app/

# - url: /_ah/channel/.*
#   script: main

# Must be last
- url: /
  static_dir: app


# https://developers.google.com/appengine/docs/python/config/appconfig#Inbound_Services
# inbound_services:
# - channel_presence


# See https://developers.google.com/appengine/docs/python/config/appconfig#Python_app_yaml_Skipping_files
skip_files:
# Built-in defaults
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
# Custom entries
- ^(.*/)?.*/node_modules/.*$