From 2567dbdcbbe4d0035d05c8894555b4462f7ed5de Mon Sep 17 00:00:00 2001 From: "promptless[bot]" <179508745+promptless[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 16:59:04 +0000 Subject: [PATCH] Update Flash docs for .runpod to .flash directory migration --- flash/apps/local-testing.mdx | 2 +- flash/cli/run.mdx | 2 +- flash/cli/undeploy.mdx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/flash/apps/local-testing.mdx b/flash/apps/local-testing.mdx index b8e92d7c..9701b7f9 100644 --- a/flash/apps/local-testing.mdx +++ b/flash/apps/local-testing.mdx @@ -76,7 +76,7 @@ The first call to a `@Endpoint` function provisions a Serverless endpoint, which flash run --auto-provision ``` -This scans your project for `@Endpoint` functions and deploys them before the server starts accepting requests. Endpoints are cached in `.runpod/resources.pkl` and reused across server restarts. +This scans your project for `@Endpoint` functions and deploys them before the server starts accepting requests. Endpoints are cached in `.flash/resources.pkl` and reused across server restarts. ## How it works diff --git a/flash/cli/run.mdx b/flash/cli/run.mdx index b40140f7..ed42ba78 100644 --- a/flash/cli/run.mdx +++ b/flash/cli/run.mdx @@ -103,7 +103,7 @@ flash run --auto-provision 1. **Discovery**: Scans your app for `@Endpoint` decorated functions. 2. **Deployment**: Deploys resources concurrently (up to 3 at a time). 3. **Confirmation**: Asks for confirmation if deploying more than 5 endpoints. -4. **Caching**: Stores deployed resources in `.runpod/resources.pkl` for reuse. +4. **Caching**: Stores deployed resources in `.flash/resources.pkl` for reuse. 5. **Updates**: Recognizes existing endpoints and updates if configuration changed. ### Benefits diff --git a/flash/cli/undeploy.mdx b/flash/cli/undeploy.mdx index 33506823..f1ab6d09 100644 --- a/flash/cli/undeploy.mdx +++ b/flash/cli/undeploy.mdx @@ -104,7 +104,7 @@ Remove inactive endpoints from tracking without API deletion: flash undeploy --cleanup-stale ``` -Use this when endpoints were deleted via the Runpod console or API (not through Flash). The local tracking file (`.runpod/resources.pkl`) becomes stale, and this command cleans it up. +Use this when endpoints were deleted via the Runpod console or API (not through Flash). The local tracking file (`.flash/resources.pkl`) becomes stale, and this command cleans it up. ## Flags @@ -137,7 +137,7 @@ For production deployments, use `flash env delete` to remove entire environments ## How tracking works -Flash tracks deployed endpoints in `.runpod/resources.pkl`. Endpoints are added when you: +Flash tracks deployed endpoints in `.flash/resources.pkl`. Endpoints are added when you: - Run `flash run --auto-provision` - Run `flash run` and call `@Endpoint` functions