From 297929af732fb590dc52f04b046a379e352ef903 Mon Sep 17 00:00:00 2001 From: Entropix Date: Tue, 30 Dec 2025 15:40:40 +0800 Subject: [PATCH] Update .gitignore to reflect new cloud repository structure - Remove specific cloud directory references and clarify that backend and frontend are in separate private repositories. - Add entries for flakestorm-cloud-backend and flakestorm-cloud-frontend to ensure they are ignored in the public repository. --- .gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 95c703b..64efcdf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ # ============================================================================= # COMMERCIAL/PROPRIETARY CODE - DO NOT COMMIT TO PUBLIC REPO # ============================================================================= -# The cloud/ directory contains proprietary commercial code and must NEVER +# The root-level cloud/ directory contains proprietary commercial code and must NEVER # be committed to the public open-source repository. -cloud/ +# Note: src/flakestorm/cloud/ contains the CLI client code and should be tracked. +/cloud/ # ============================================================================= # Python @@ -124,3 +125,5 @@ docs/* !docs/API_SPECIFICATION.md !docs/TESTING_GUIDE.md !docs/IMPLEMENTATION_CHECKLIST.md +flakestorm-cloud-backend/ +flakestorm-cloud-frontend/