diff --git a/flash/apps/deploy-apps.mdx b/flash/apps/deploy-apps.mdx index ca19b9dd..896e4af3 100644 --- a/flash/apps/deploy-apps.mdx +++ b/flash/apps/deploy-apps.mdx @@ -262,6 +262,7 @@ The `flash_manifest.json` file is the brain of your deployment. It tells each en - Which functions to execute. - What Docker image to use. - How to configure resources (GPUs, workers, scaling). +- Environment variables for workers. - How to route HTTP requests (for load balancer endpoints). ```json @@ -280,6 +281,10 @@ The `flash_manifest.json` file is the brain of your deployment. It tells each en "imageName": "runpod/flash:latest", "gpuIds": "AMPERE_16", "workersMax": 3, + "env": { + "HF_TOKEN": "your_token", + "MODEL_ID": "gpt2" + }, "functions": [ {"name": "gpu_hello", "module": "gpu_worker"} ]