31 lines
706 B
YAML
31 lines
706 B
YAML
# Git Serverless Configuration - OLD FORMAT
|
|
# For backward compatibility testing (no serverlessConfig)
|
|
|
|
app: "test-git-fcz5"
|
|
region: "asia-south1"
|
|
handler: "handler.handler"
|
|
language: "nodejs/20"
|
|
|
|
settings:
|
|
nodejs:
|
|
common_js: false
|
|
|
|
build:
|
|
builtin: dockerfile
|
|
ignorefile: .dockerignore
|
|
no_cache: false
|
|
args:
|
|
NODE_ENV: "production"
|
|
BUILD_VERSION: "1.0.0"
|
|
|
|
# NOTE: NO serverlessConfig section!
|
|
# This is the OLD format for backward compatibility testing.
|
|
#
|
|
# TESTING STEPS:
|
|
# 1. Deploy this app BEFORE deploying new conductor code
|
|
# 2. Configure Scaling/Env/PortMap from UI
|
|
# 3. Deploy new conductor code
|
|
# 4. Push a code change to this repo
|
|
# 5. Verify all UI settings are preserved
|
|
|