forked from yukuku/telebot
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.yaml
executable file
·57 lines (43 loc) · 846 Bytes
/
app.yaml
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
48
49
50
51
52
53
54
55
56
57
#REAL VERSION
# application: pickmeup-telegram
# version: 11
#TEST DEV
#application: tiramisu-telegram
#version: 1
runtime: python27
api_version: 1
threadsafe: false
#inbound_services:
#- channel_presence
builtins:
- remote_api: on
- deferred: on
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: /set_webhook
login: admin
script: main.app
- url: /get_webhook_info
login: admin
script: main.app
- url: /delete_webhook
login: admin
script: main.app
- url: /_ah/queue/deferred
script: google.appengine.ext.deferred.deferred.application
login: admin
- url: /ttdata
static_dir: ttdata
application_readable: true
- url: /data
static_dir: data
application_readable: true
- url: .*
script: main.app
libraries:
- name: webapp2
version: latest
- name: ssl
version: latest