diff --git a/flash/apps/local-testing.mdx b/flash/apps/local-testing.mdx index df451e88..e0d4634e 100644 --- a/flash/apps/local-testing.mdx +++ b/flash/apps/local-testing.mdx @@ -86,7 +86,7 @@ flash run --auto-provision uv run 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 2557f7ba..cf7f813b 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