Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 1 | # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style |
| 3 | # license that can be found in the LICENSE file or at |
| 4 | # https://developers.google.com/open-source/licenses/bsd |
| 5 | |
| 6 | # Makefile to simplify some common AppEngine actions. |
| 7 | # Use 'make help' for a list of commands. |
| 8 | |
| 9 | DEVID = monorail-dev |
| 10 | STAGEID= monorail-staging |
Adrià Vilanova Martínez | 515639b | 2021-07-06 16:43:59 +0200 | [diff] [blame] | 11 | PRODID= avm99963-bugs |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 12 | |
| 13 | GAE_PY?= python gae.py |
| 14 | DEV_APPSERVER_FLAGS?= --watcher_ignore_re="(.*/lib|.*/node_modules|.*/third_party|.*/venv)" |
| 15 | |
| 16 | WEBPACK_PATH := ./node_modules/webpack-cli/bin/cli.js |
| 17 | |
| 18 | TARDIR ?= "/workspace" |
| 19 | |
| 20 | FRONTEND_MODULES?= default |
| 21 | BACKEND_MODULES?= besearch latency-insensitive api |
| 22 | |
| 23 | BRANCH_NAME := $(shell git rev-parse --abbrev-ref HEAD) |
| 24 | |
| 25 | PY_DIRS = api,businesslogic,features,framework,project,proto,search,services,sitewide,testing,tracker |
| 26 | |
| 27 | _VERSION ?= $(shell ../../../infra/luci/appengine/components/tools/calculate_version.py) |
| 28 | |
Adrià Vilanova Martínez | ac4a644 | 2022-05-15 19:05:13 +0200 | [diff] [blame^] | 29 | RUN_CLOUD_TASKS := ../../cipd/cloud-tasks-emulator \ |
| 30 | --queue projects/monorail-staging/locations/us-central1/queues/componentexport \ |
| 31 | --queue projects/monorail-staging/locations/us-central1/queues/default \ |
| 32 | --queue projects/monorail-staging/locations/us-central1/queues/notifications \ |
| 33 | --queue projects/monorail-staging/locations/us-central1/queues/outboundemail \ |
| 34 | --queue projects/monorail-staging/locations/us-central1/queues/recomputederivedfields \ |
| 35 | --queue projects/monorail-staging/locations/us-central1/queues/spamexport \ |
| 36 | --queue projects/monorail-staging/locations/us-central1/queues/wipeoutsendusers \ |
| 37 | --queue projects/monorail-staging/locations/us-central1/queues/wipeoutdeleteusers \ |
| 38 | --queue projects/monorail-staging/locations/us-central1/queues/deleteusers \ |
| 39 | --queue projects/monorail-staging/locations/us-central1/queues/pubsub-issueupdates \ |
| 40 | -host localhost \ |
| 41 | -port 9090 |
| 42 | |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 43 | default: help |
| 44 | |
| 45 | check: |
| 46 | ifndef NPM_VERSION |
| 47 | $(error npm not found. Install from nodejs.org or see README) |
| 48 | endif |
| 49 | |
| 50 | help: |
| 51 | @echo "Available commands:" |
| 52 | @sed -n '/^[a-zA-Z0-9_.]*:/s/:.*//p' <Makefile |
| 53 | |
| 54 | # Run "eval `../../go/env.py`" before running the following prpc_proto commands |
| 55 | prpc_proto_v0: |
| 56 | touch ../../ENV/lib/python2.7/site-packages/google/__init__.py |
| 57 | PYTHONPATH=../../ENV/lib/python2.7/site-packages \ |
| 58 | PATH=../../luci/appengine/components/tools:$(PATH) \ |
| 59 | ../../cipd/protoc \ |
| 60 | --python_out=. --prpc-python_out=. api/api_proto/*.proto |
| 61 | cd ../../go/src/infra/monorailv2 && \ |
| 62 | cproto -proto-path ../../../../appengine/monorail/ ../../../../appengine/monorail/api/api_proto/ |
| 63 | prpc_proto_v3: |
| 64 | touch ../../ENV/lib/python2.7/site-packages/google/__init__.py |
| 65 | PYTHONPATH=../../ENV/lib/python2.7/site-packages \ |
| 66 | PATH=../../luci/appengine/components/tools:$(PATH) \ |
Adrià Vilanova Martínez | f5e1039 | 2021-12-07 22:55:40 +0100 | [diff] [blame] | 67 | ../../cipd/bin/protoc \ |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 68 | --python_out=. --prpc-python_out=. api/v3/api_proto/*.proto |
| 69 | cd ../../go/src/infra/monorailv2 && \ |
| 70 | cproto -proto-path ../../../../appengine/monorail/ ../../../../appengine/monorail/api/v3/api_proto/ |
| 71 | |
| 72 | business_proto: |
| 73 | touch ../../ENV/lib/python2.7/site-packages/google/__init__.py |
| 74 | PYTHONPATH=../../ENV/lib/python2.7/site-packages \ |
| 75 | PATH=../../luci/appengine/components/tools:$(PATH) \ |
| 76 | ../../cipd/protoc \ |
| 77 | --python_out=. --prpc-python_out=. proto/*.proto |
| 78 | |
| 79 | test: |
| 80 | ../../test.py test appengine/monorail |
| 81 | |
| 82 | test_no_coverage: |
| 83 | ../../test.py test appengine/monorail --no-coverage |
| 84 | |
| 85 | coverage: |
| 86 | @echo "Running tests + HTML coverage report in ~/monorail-coverage:" |
| 87 | ../../test.py test appengine/monorail --html-report ~/monorail-coverage --coveragerc appengine/monorail/.coveragerc |
| 88 | |
| 89 | # Shows coverage on the tests themselves, helps illuminate when we have test |
| 90 | # methods that aren't used. |
| 91 | test_coverage: |
| 92 | @echo "Running tests + HTML coverage report (for tests) in ~/monorail-test-coverage:" |
| 93 | ../../test.py test appengine/monorail --html-report ~/monorail-test-coverage --coveragerc appengine/monorail/.testcoveragerc |
| 94 | |
| 95 | # Commands for running locally using dev_appserver. |
| 96 | # devserver requires an application ID (-A) to be specified. |
| 97 | # We are using `-A monorail-staging` because ml spam code is set up |
| 98 | # to impersonate monorail-staging in the local environment. |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 99 | serve: |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 100 | @echo "---[Starting SDK AppEngine Server]---" |
Adrià Vilanova Martínez | ac4a644 | 2022-05-15 19:05:13 +0200 | [diff] [blame^] | 101 | $(GAE_PY) devserver -A monorail-staging -- $(DEV_APPSERVER_FLAGS)\ |
| 102 | & $(WEBPACK_PATH) --watch\ |
| 103 | & $(RUN_CLOUD_TASKS) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 104 | |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 105 | serve_email: |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 106 | @echo "---[Starting SDK AppEngine Server]---" |
Adrià Vilanova Martínez | ac4a644 | 2022-05-15 19:05:13 +0200 | [diff] [blame^] | 107 | $(GAE_PY) devserver -A monorail-staging -- $(DEV_APPSERVER_FLAGS) --enable_sendmail=True\ |
| 108 | & $(WEBPACK_PATH) --watch\ |
| 109 | & $(RUN_CLOUD_TASKS) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 110 | |
| 111 | # The _remote commands expose the app on 0.0.0.0, so that it is externally |
| 112 | # accessible by hostname:port, rather than just localhost:port. |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 113 | serve_remote: |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 114 | @echo "---[Starting SDK AppEngine Server]---" |
Adrià Vilanova Martínez | ac4a644 | 2022-05-15 19:05:13 +0200 | [diff] [blame^] | 115 | $(GAE_PY) devserver -A monorail-staging -o -- $(DEV_APPSERVER_FLAGS)\ |
| 116 | & $(WEBPACK_PATH) --watch\ |
| 117 | & $(RUN_CLOUD_TASKS) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 118 | |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 119 | serve_remote_email: |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 120 | @echo "---[Starting SDK AppEngine Server]---" |
Adrià Vilanova Martínez | ac4a644 | 2022-05-15 19:05:13 +0200 | [diff] [blame^] | 121 | $(GAE_PY) devserver -A monorail-staging -o -- $(DEV_APPSERVER_FLAGS) --enable_sendmail=True\ |
| 122 | & $(WEBPACK_PATH) --watch\ |
| 123 | & $(RUN_CLOUD_TASKS) |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 124 | |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 125 | run: serve |
| 126 | |
| 127 | deps: node_deps |
| 128 | rm -f static/dist/* |
| 129 | |
| 130 | build_js: |
| 131 | $(WEBPACK_PATH) --mode=production |
| 132 | |
| 133 | clean_deps: |
| 134 | rm -rf node_modules |
| 135 | |
| 136 | node_deps: |
| 137 | npm ci --no-save |
| 138 | |
| 139 | dev_deps: |
| 140 | python -m pip install --no-deps -r requirements.dev.txt |
| 141 | |
| 142 | karma: |
| 143 | npx karma start --debug --coverage |
| 144 | |
| 145 | karma_debug: |
| 146 | npx karma start --debug |
| 147 | |
| 148 | pylint: |
| 149 | pylint -f parseable *py {$(PY_DIRS)}{/,/test/}*py |
| 150 | |
| 151 | py3lint: |
| 152 | pylint --py3k *py {$(PY_DIRS)}{/,/test/}*py |
| 153 | |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 154 | deploy_dev: build_frontend |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 155 | $(eval BRANCH_NAME := $(shell git rev-parse --abbrev-ref HEAD)) |
| 156 | @echo "---[Dev $(DEVID)]---" |
Adrià Vilanova Martínez | 515639b | 2021-07-06 16:43:59 +0200 | [diff] [blame] | 157 | $(GAE_PY) upload --tag $(BRANCH_NAME) -A $(DEVID) $(FRONTEND_MODULES) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 158 | |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 159 | # Build target used by LUCI CD and manual process to build frontend. |
| 160 | build_frontend: clean_deps deps build_js |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 161 | |
| 162 | package_release: |
| 163 | rsync -aLK . $(TARDIR)/package |
| 164 | |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 165 | lsbuilds: |
| 166 | gcloud builds list --filter="tags='monorail'" |
| 167 | |
| 168 | # AppEngine apps can be tested locally and in non-default versions upload to |
| 169 | # the main app-id, but it is still sometimes useful to have a completely |
| 170 | # separate app-id. E.g., for testing inbound email, load testing, or using |
| 171 | # throwaway databases. |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 172 | deploy_staging: build_frontend |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 173 | @echo "---[Staging $(STAGEID)]---" |
Adrià Vilanova Martínez | 515639b | 2021-07-06 16:43:59 +0200 | [diff] [blame] | 174 | $(GAE_PY) upload -A $(STAGEID) $(FRONTEND_MODULES) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 175 | |
| 176 | # This is our production server that users actually use. |
Adrià Vilanova Martínez | 2d5457a | 2022-01-13 13:25:39 +0100 | [diff] [blame] | 177 | deploy_prod: build_frontend |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 178 | @echo "---[Deploying prod instance $(PRODID)]---" |
Adrià Vilanova Martínez | 515639b | 2021-07-06 16:43:59 +0200 | [diff] [blame] | 179 | $(GAE_PY) upload -A $(PRODID) $(FRONTEND_MODULES) |
Copybara | 854996b | 2021-09-07 19:36:02 +0000 | [diff] [blame] | 180 | |
| 181 | # Note that we do not provide a command-line way to make the newly-uploaded |
| 182 | # version the default version. This is for two reasons: a) You should be using |
| 183 | # your browser to confirm that the new version works anyway, so just use the |
| 184 | # console interface to make it the default; and b) If you really want to use |
| 185 | # the command line you can use gae.py directly. |