From 5c830881576706570ea1ee045c780a4a2fe9450c Mon Sep 17 00:00:00 2001 From: username-of-rehman <145903909+username-of-rehman@users.noreply.github.com> Date: Mon, 25 Sep 2023 15:12:32 +0500 Subject: [PATCH] Update infrastructure-providers.mdx docs: Add instructions for cleaning local data in local provider setup Added a new section under Local Provider documentation that provides instructions on how to clean the local data to accommodate new changes. This is useful for developers working with the local environment and making updates to entities and events. Fixes #1041 --- .../docs/10_going-deeper/infrastructure-providers.mdx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/website/docs/10_going-deeper/infrastructure-providers.mdx b/website/docs/10_going-deeper/infrastructure-providers.mdx index a5336fa34..060cedcd4 100644 --- a/website/docs/10_going-deeper/infrastructure-providers.mdx +++ b/website/docs/10_going-deeper/infrastructure-providers.mdx @@ -342,3 +342,13 @@ boost start -e local ``` Where `local` is one of your defined environments with the `Booster.configure` call. + +### Cleaning Local Data for New Changes +When making changes to your entities and events, you might need to reset the local environment to accommodate these changes. The application creates a `.booster` folder to store relevant information. To clean the local data and reset the environment: + +1. Locate the `.booster` folder in your project directory. +2. Delete the contents of the `.booster` folder or the folder itself. + +This action will clear the local data and allow you to proceed with your new changes effectively. + +