forked from luci/luci-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_frontend.py
43 lines (29 loc) · 1.22 KB
/
main_frontend.py
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
# Copyright 2014 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
"""This modules is imported by AppEngine and defines the 'app' object.
It is a separate file so that application bootstrapping code like ereporter2,
that shouldn't be done in unit tests, can be done safely. This file must be
tested via a smoke test.
"""
import os
import sys
APP_DIR = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(APP_DIR, 'components', 'third_party'))
import endpoints
from components import auth
from components import config
from components import ereporter2
import handlers_frontend
import monitoring
def create_applications():
ereporter2.register_formatter()
# App that serves HTML pages and the main API.
frontend = monitoring.wrap_webapp2_app(
handlers_frontend.create_application(False))
# App that serves endpoints APIs. Note: monitoring.wrap_webapp2_app doesn't
# support Endpoints server. This is fine, we don't host any important APIs
# there.
api = endpoints.api_server([auth.AuthService, config.ConfigApi])
return frontend, api
frontend_app, endpoints_app = create_applications()