diff --git a/flash/apps/deploy-apps.mdx b/flash/apps/deploy-apps.mdx index 1e33981d..044a93c0 100644 --- a/flash/apps/deploy-apps.mdx +++ b/flash/apps/deploy-apps.mdx @@ -275,6 +275,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 @@ -293,6 +294,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"} ]