tree: dbbd8319c1c7bb49cbb3faddbf7604a9be526d2a [path history] [tgz]
  1. api/
  2. frontend/
  3. taskspb/
  4. templates/
  5. .gcloudignore
  6. app.yaml
  7. index.yaml
  8. main.go
  9. Makefile
  10. OWNERS
  11. queue.yaml
  12. README.md
go/src/infra/appengine/poros/README.md

Chrome Enterprise Deployment manager AppEngine Service

Chrome Enterprise Deployment manager(a.k.a Poros) is a service which manages lab configs of all enterprise lab instances.

Services maintained:

  • Inventory (Go Service)
  • FrontEnd App (React, Redux, TypeScript)

Project Vision & Design Document

  • Vision : go/chrome-enterprise-lab2.0-vision
  • Design : go/enterprise-deployment-manager-design-phase-1

Local deployment

Backend

Running the server:

go run main.go

This will set up the backend server running on port 8800

Frontend

Running the frontend:

cd frontend
npm install
npm start

This will set up the frontend client running on port 3000 with an automatic proxy to the backend server running on 8800. To view the UI, go to localhost:3000

Formatting:

npm run fix

Launch local instance with one command

make runlocal