stateDirectory returns the directory where the devtool's state is stored. Deleting this directory will reset the state of the local development environment.
()
| 842 | // stateDirectory returns the directory where the devtool's state is stored. |
| 843 | // Deleting this directory will reset the state of the local development environment. |
| 844 | func stateDirectory() string { |
| 845 | dir := lookupDotenv("RILL_DEVTOOL_STATE_DIRECTORY") |
| 846 | if dir == "" { |
| 847 | dir = "dev-cloud-state" |
| 848 | } |
| 849 | return dir |
| 850 | } |
no test coverage detected