Add WithNonactiveKillSwitches field to GetKillSwitchOverviewRequest

This will be used by the extension to only get active kill switches.

Change-Id: Ibe7ad4cdb74ab7b385f3d18b70e74da6b834375c
6 files changed
tree: 0fe3cfc86e6ec598eac3c446e00efb9203a872bf
  1. api_proto/
  2. cmd/
  3. docker/
  4. frontend/
  5. internal/
  6. schema/
  7. .clang-format
  8. .editorconfig
  9. .gitreview
  10. docker-compose.dev.yml
  11. go.mod
  12. go.sum
  13. Makefile
  14. README.md
README.md

TWPT-server

TWPT-server is the code for the TW Power Tools gRPC server and its frontend.

This repository is under active development, and is not ready yet for production.

Frontend

To serve the frontend, follow these instructions:

  1. Run docker-compose -f docker-compose.dev.yml up to start the gRPC API, database and Envoy proxy (which will translate gRPC-Web <-> gRPC).
  2. Run mysql -u root twpt < schema/*.sql.
  3. Run docker-compose -f docker-compose.dev.yml restart.
  4. Run npm install.
  5. Run make serve.