34 lines
710 B
YAML
34 lines
710 B
YAML
# Project identity for `a2a deploy`. Most metadata (resources, scopes,
|
|
# secrets, workspace, etc.) lives on the Python class — this file only
|
|
# tells the CLI how to find it.
|
|
name: robertseares
|
|
version: 0.1.2
|
|
entrypoint: agent:Robertseares
|
|
expose:
|
|
public: true
|
|
runtime:
|
|
lifecycle: warm
|
|
resources:
|
|
databases:
|
|
- name: app
|
|
provider: neon
|
|
engine: postgres
|
|
scope: user
|
|
branch: main
|
|
access_mode: read_write
|
|
env:
|
|
url: DATABASE_URL
|
|
migrations:
|
|
path: db/migrations
|
|
scale_to_zero: true
|
|
|
|
frontend:
|
|
type: server-rendered
|
|
framework: nextjs
|
|
path: frontend
|
|
build: npm run build
|
|
start: node server.js
|
|
port: 3000
|
|
mount: /
|
|
auth: inherit
|