29 lines
697 B
YAML
29 lines
697 B
YAML
# Test Git Serverless - OLD FORMAT (no serverlessConfig)
|
|
# For backward compatibility testing
|
|
|
|
app: "test-git-fcz5-handler"
|
|
region: "asia-south1"
|
|
handler: "handler.handler"
|
|
language: "nodejs/20"
|
|
|
|
settings:
|
|
nodejs:
|
|
common_js: false
|
|
|
|
build:
|
|
builtin: dockerfile
|
|
ignorefile: .gitignore
|
|
no_cache: false
|
|
args:
|
|
NODE_ENV: "production"
|
|
BUILD_VERSION: "1.0.0"
|
|
TEST_CONFIG: "backward-compat-test"
|
|
|
|
# NOTE: NO serverlessConfig section here!
|
|
# This is intentional for backward compatibility testing.
|
|
# After deploying new conductor code, this app should:
|
|
# 1. Build successfully
|
|
# 2. Keep all UI-configured settings (Env, Scaling, PortMap)
|
|
# 3. Not have any config overrides applied
|
|
|