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.
To serve the frontend for development, follow these instructions:
- Run
docker-compose -f docker-compose.dev.yml upto start the gRPC API, database and Envoy proxy (which will translate gRPC-Web <-> gRPC). - Run
docker exec -i twpt-server_db_1 mysql -u root twpt < schema/common.sqlanddocker exec -i twpt-server_db_1 mysql -u root twpt < schema/kill-switch.sql. - Run
docker exec -it twpt-server_db_1 mysql -u root twptand enter the following SQL sentence with your data to create the first authorized user:INSERT INTO KillSwitchAuthorizedUser (google_uid, email, access_level) VALUES ('', '{YOUR_EMAIL_ADDRESS}', 10);. - Run
docker-compose -f docker-compose.dev.yml restart. - Run
npm install. - Run
make serve.
You can run the backend for development purposes by running go run . in the
//cmd/serve folder. You may also build its docker image to allow it to
interact with the frontend (since it needs Envy (the gRPC-Web proxy) to
translate between gRPC and HTTP requests).
Use the docker-compose.yml file instead of docker-compose.dev.yml and follow
steps 1-4 from the "frontend" section to spin up the backend.
For the frontend, run make deploy in the //frontend folder to deploy the
frontend to Firebase.