core/__snapshots__/TestGenerateBuildPlanForExamples_python-flask_1.snap.json
core/__snapshots__/TestGenerateBuildPlanForExamples_python-flask_1.snap.jsonBrowse 1970 files
820 tokens
2,452 bytes
Token encoding: o200k_base
Snapshot 21a254f
← Back to SKILL.md
1{2 "caches": {3 "pip": {4 "directory": "/opt/pip-cache",5 "type": "shared"6 }7 },8 "deploy": {9 "base": {10 "image": "ghcr.io/railwayapp/railpack-runtime:mise-2026.9.9"11 },12 "inputs": [13 {14 "include": [15 "/mise/shims",16 "/mise/installs",17 "/usr/local/bin/mise",18 "/etc/mise/config.toml",19 "/root/.local/state/mise"20 ],21 "step": "packages:mise"22 },23 {24 "include": [25 "/app/.venv"26 ],27 "step": "build"28 },29 {30 "exclude": [31 ".venv"32 ],33 "include": [34 "."35 ],36 "step": "build"37 }38 ],39 "startCommand": "gunicorn --bind 0.0.0.0:${PORT:-8000} main:app",40 "variables": {41 "PIP_DEFAULT_TIMEOUT": "100",42 "PIP_DISABLE_PIP_VERSION_CHECK": "1",43 "PYTHONDONTWRITEBYTECODE": "1",44 "PYTHONFAULTHANDLER": "1",45 "PYTHONHASHSEED": "random",46 "PYTHONUNBUFFERED": "1",47 "RAILPACK_VERSION": "dev"48 }49 },50 "steps": [51 {52 "assets": {53 "generated-mise-toml": "[generated-mise-toml]"54 },55 "commands": [56 {57 "path": "/mise/shims"58 },59 {60 "customName": "create mise config",61 "name": "generated-mise-toml",62 "path": "/etc/mise/config.toml"63 },64 {65 "cmd": "mise install",66 "customName": "install mise packages: python"67 }68 ],69 "inputs": [70 {71 "image": "ghcr.io/railwayapp/railpack-builder:mise-2026.9.9"72 }73 ],74 "name": "packages:mise",75 "variables": {76 "MISE_CACHE_DIR": "/mise/cache",77 "MISE_CONFIG_DIR": "/mise",78 "MISE_DATA_DIR": "/mise",79 "MISE_INSTALLS_DIR": "/mise/installs",80 "MISE_SHIMS_DIR": "/mise/shims"81 }82 },83 {84 "caches": [85 "pip"86 ],87 "commands": [88 {89 "cmd": "python -m venv /app/.venv"90 },91 {92 "path": "/app/.venv/bin"93 },94 {95 "dest": "requirements.txt",96 "src": "requirements.txt"97 },98 {99 "cmd": "pip install -r requirements.txt"100 }101 ],102 "inputs": [103 {104 "step": "packages:mise"105 }106 ],107 "name": "install",108 "variables": {109 "PIP_CACHE_DIR": "/opt/pip-cache",110 "PIP_DEFAULT_TIMEOUT": "100",111 "PIP_DISABLE_PIP_VERSION_CHECK": "1",112 "PYTHONDONTWRITEBYTECODE": "1",113 "PYTHONFAULTHANDLER": "1",114 "PYTHONHASHSEED": "random",115 "PYTHONUNBUFFERED": "1",116 "VIRTUAL_ENV": "/app/.venv"117 }118 },119 {120 "inputs": [121 {122 "step": "install"123 },124 {125 "include": [126 "."127 ],128 "local": true129 }130 ],131 "name": "build",132 "secrets": [133 "*"134 ]135 }136 ]137}