As a developer,
I want to be able to say "I want to deploy a service that uses a database, a block storage bucket & publishes messages to a topic while listening to another",
without having to figure out IAM permissions, network setup, initialization order of resources and the dozens of other infrastructure configuration issues that arise.
xlrte enables just this. The configuration below is all that is needed.
name: my-shiny-app
runtime: cloudrun
spec:
base_name: my-shiny-app
http:
public: true
http2: false
depends_on:
cloudsql:
- name: my-pg-db
type: postgres
pubsub:
consume:
- name: upload_events
produce:
- name: resize_events
cloudstorage:
- name: media-uploads
public: true
access: readwriteTo find out more:
- Read the documentation
- checkout our example project