| OLD | NEW |
| (Empty) |
| 1 # Deploy tool Component for the LogDog Coordinator static module. | |
| 2 appengine_module < | |
| 3 module_name: "static" | |
| 4 static_module <> | |
| 5 | |
| 6 handlers: < | |
| 7 # Handlers for LogDog Web App. | |
| 8 handler < | |
| 9 url: "/app/?" | |
| 10 static_files < | |
| 11 build: < | |
| 12 path: "dist/logdog-app" | |
| 13 dir_key: "build.web" | |
| 14 > | |
| 15 upload: "index.html" | |
| 16 url_map: "index.html" | |
| 17 > | |
| 18 secure: SECURE_ALWAYS | |
| 19 > | |
| 20 | |
| 21 handler < | |
| 22 url: "/app" | |
| 23 static_build_dir: < | |
| 24 path: "dist/logdog-app" | |
| 25 dir_key: "build.web" | |
| 26 > | |
| 27 secure: SECURE_ALWAYS | |
| 28 > | |
| 29 | |
| 30 # Handlers for LogDog View App. | |
| 31 handler < | |
| 32 url: "/v/?" | |
| 33 static_files < | |
| 34 build: < | |
| 35 path: "dist/logdog-view" | |
| 36 dir_key: "build.web" | |
| 37 > | |
| 38 upload: "index.html" | |
| 39 url_map: "index.html" | |
| 40 > | |
| 41 secure: SECURE_ALWAYS | |
| 42 > | |
| 43 | |
| 44 handler < | |
| 45 url: "/v" | |
| 46 static_build_dir: < | |
| 47 path: "dist/logdog-view" | |
| 48 dir_key: "build.web" | |
| 49 > | |
| 50 secure: SECURE_ALWAYS | |
| 51 > | |
| 52 > | |
| 53 handler_path: "/appengine/static/common/handlers.cfg" | |
| 54 | |
| 55 resources < | |
| 56 dispatch: "*/app/*" | |
| 57 dispatch: "*/v/*" | |
| 58 > | |
| 59 resource_path: "/appengine/static/common/resources.cfg" | |
| 60 > | |
| 61 | |
| 62 build < | |
| 63 dir_key: "build.web" | |
| 64 python_script < | |
| 65 path: "/web/deploy/build.py" | |
| 66 extra_args: "logdog-app" | |
| 67 extra_args: "logdog-view" | |
| 68 > | |
| 69 > | |
| 70 build_path: "/appengine/static/common/build.cfg" | |
| OLD | NEW |