Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Unified Diff: reviewbot/app.yaml

Issue 20518002: Implement mail dispatcher app. (Closed) Base URL: https://src.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « reviewbot/PRESUBMIT.py ('k') | reviewbot/handlers/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: reviewbot/app.yaml
===================================================================
--- reviewbot/app.yaml (revision 0)
+++ reviewbot/app.yaml (revision 0)
@@ -0,0 +1,31 @@
+application: reviewbot
+version: 1
+runtime: python27
+api_version: 1
+threadsafe: true
+
+inbound_services:
+- mail
+
+handlers:
+- url: /_ah/mail/.*@.*\.appspotmail\.com$
+ script: mail_dispatcher.app
+ login: admin
+- url: /admin/app_config
+ script: app_config.app
+ login: admin
+
+libraries:
+- name: jinja2
+ version: 2.6
+- name: pycrypto
+ version: 2.6
+- name: webapp2
+ version: 2.5.2
+- name: webob
+ version: 1.2.3
+
+admin_console:
+ pages:
+ - name: App Configuration
+ url: /admin/app_config
« no previous file with comments | « reviewbot/PRESUBMIT.py ('k') | reviewbot/handlers/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698