.envlocal 883 B

1234567891011121314151617181920212223242526
  1. # Fill out this file, and renamed to '.dashboard.env' in order to run this with Tilt
  2. # NODE_ENV denotes the environment that gets passed to webpack
  3. NODE_ENV=development
  4. # DEV_SERVER_PORT is the port that the UI will run on
  5. DEV_SERVER_PORT=8081
  6. # ENABLE_PROXY decides if requests should be proxied
  7. ENABLE_PROXY=true
  8. # API_SERVER is the URL that the API server is running on
  9. API_SERVER=http://localhost:8080
  10. # TRUST_ARN is used with the cloudformation pack, to allow supporting multiple AWS accounts as management accounts. Change MY_AWS_DEV_ACCOUNT_ID to your AWS developer account ID
  11. TRUST_ARN=arn:aws:iam::MY_AWS_DEV_ACCOUNT_ID:role/CAPIManagement
  12. # VITE_PORTER_CIDRS are a comma-separated list of CIDRs mapping to Porter infra. Used for restricting access to a customer's control plane endpoint
  13. # below example is for the office IP
  14. VITE_PORTER_CIDRS="135.84.167.61/32"