Remove environments from synced folder, and stop syncing

This commit is contained in:
Gregory Schier
2025-02-19 10:35:31 -08:00
parent 74f14a8392
commit 8ed0fd55c3
3 changed files with 28 additions and 8 deletions

View File

@@ -25,6 +25,7 @@ export function SyncToFilesystemSetting({
<VStack className="my-2" space={3}>
<Banner color="info">
Sync workspace data to folder as plain text files, ideal for backup and Git collaboration.
Environments are excluded in order to keep your secrets private.
</Banner>
{error && <div className="text-danger">{error}</div>}

View File

@@ -69,7 +69,7 @@ function isModelRelevant(m: AnyModel) {
if (
m.model !== 'workspace' &&
m.model !== 'folder' &&
m.model !== 'environment' &&
// m.model !== 'environment' && // Not synced anymore
m.model !== 'http_request' &&
m.model !== 'grpc_request' &&
m.model !== 'websocket_request'