core/__snapshots__/TestGenerateBuildPlanForExamples_config-file_1.snap.json
core/__snapshots__/TestGenerateBuildPlanForExamples_config-file_1.snap.jsonBrowse 1970 files
1,170 tokens
3,614 bytes
Token encoding: o200k_base
Snapshot 21a254f
← Back to SKILL.md
1{2 "caches": {3 "apt": {4 "directory": "/var/cache/apt",5 "type": "locked"6 },7 "apt-lists": {8 "directory": "/var/lib/apt/lists",9 "type": "locked"10 },11 "bun-install": {12 "directory": "/root/.bun/install/cache",13 "type": "shared"14 },15 "node-modules": {16 "directory": "/app/node_modules/.cache",17 "type": "shared"18 }19 },20 "deploy": {21 "base": {22 "step": "packages:apt:runtime"23 },24 "inputs": [25 {26 "include": [27 "/mise/shims",28 "/mise/installs",29 "/usr/local/bin/mise",30 "/etc/mise/config.toml",31 "/root/.local/state/mise"32 ],33 "step": "packages:mise"34 },35 {36 "include": [37 "/app/node_modules"38 ],39 "step": "build"40 },41 {42 "exclude": [43 "node_modules",44 ".yarn"45 ],46 "include": [47 "/root/.cache",48 "."49 ],50 "step": "build"51 }52 ],53 "startCommand": "python --version \u0026\u0026 lsb_release -d",54 "variables": {55 "CI": "true",56 "NODE_ENV": "production",57 "NPM_CONFIG_FETCH_RETRIES": "5",58 "NPM_CONFIG_FUND": "false",59 "NPM_CONFIG_PRODUCTION": "false",60 "NPM_CONFIG_UPDATE_NOTIFIER": "false",61 "RAILPACK_VERSION": "dev"62 }63 },64 "steps": [65 {66 "caches": [67 "apt",68 "apt-lists"69 ],70 "commands": [71 {72 "cmd": "sh -c 'apt-get update \u0026\u0026 apt-get install -y lsb-release'",73 "customName": "install apt packages: lsb-release"74 }75 ],76 "inputs": [77 {78 "image": "ghcr.io/railwayapp/railpack-builder:mise-2026.9.9"79 }80 ],81 "name": "packages:apt:build"82 },83 {84 "assets": {85 "generated-mise-toml": "[generated-mise-toml]"86 },87 "commands": [88 {89 "path": "/mise/shims"90 },91 {92 "customName": "create mise config",93 "name": "generated-mise-toml",94 "path": "/etc/mise/config.toml"95 },96 {97 "cmd": "mise install",98 "customName": "install mise packages: bun, node, python"99 }100 ],101 "inputs": [102 {103 "step": "packages:apt:build"104 }105 ],106 "name": "packages:mise",107 "variables": {108 "MISE_CACHE_DIR": "/mise/cache",109 "MISE_CONFIG_DIR": "/mise",110 "MISE_DATA_DIR": "/mise",111 "MISE_INSTALLS_DIR": "/mise/installs",112 "MISE_SHIMS_DIR": "/mise/shims"113 }114 },115 {116 "caches": [117 "bun-install"118 ],119 "commands": [120 {121 "path": "/app/node_modules/.bin"122 },123 {124 "cmd": "mkdir -p /app/node_modules/.cache"125 },126 {127 "dest": "bun.lockb",128 "src": "bun.lockb"129 },130 {131 "dest": "package.json",132 "src": "package.json"133 },134 {135 "cmd": "bun install --frozen-lockfile"136 }137 ],138 "inputs": [139 {140 "step": "packages:mise"141 }142 ],143 "name": "install",144 "variables": {145 "CI": "true",146 "NODE_ENV": "production",147 "NPM_CONFIG_FETCH_RETRIES": "5",148 "NPM_CONFIG_FUND": "false",149 "NPM_CONFIG_PRODUCTION": "false",150 "NPM_CONFIG_UPDATE_NOTIFIER": "false"151 }152 },153 {154 "caches": [155 "node-modules"156 ],157 "commands": [158 {159 "cmd": "sh -c 'lsb_release -a'",160 "customName": "lsb_release -a"161 }162 ],163 "inputs": [164 {165 "step": "install"166 },167 {168 "include": [169 "."170 ],171 "local": true172 }173 ],174 "name": "build",175 "secrets": [176 "*"177 ],178 "variables": {179 "HELLO": "world"180 }181 },182 {183 "caches": [184 "apt",185 "apt-lists"186 ],187 "commands": [188 {189 "cmd": "sh -c 'apt-get update \u0026\u0026 apt-get install -y lsb-release'",190 "customName": "install apt packages: lsb-release"191 }192 ],193 "inputs": [194 {195 "image": "ghcr.io/railwayapp/railpack-runtime:mise-2026.9.9"196 }197 ],198 "name": "packages:apt:runtime"199 }200 ]201}