From e4bd3282fd59a563d69dd8376c75c0416965a462 Mon Sep 17 00:00:00 2001 From: Albert Date: Sun, 9 Nov 2025 18:35:55 +0000 Subject: [PATCH] chore: Clean up unused files and add .claude settings to gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .claude/settings.local.json to gitignore (user-specific settings) - Remove unused history.txt (SurrealDB query history) - Remove unused .env.test.example (testing template no longer used) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .env.test.example | 21 --------------------- .gitignore | 3 +++ history.txt | 6 ------ 3 files changed, 3 insertions(+), 27 deletions(-) delete mode 100644 .env.test.example delete mode 100644 history.txt diff --git a/.env.test.example b/.env.test.example deleted file mode 100644 index aa67a88..0000000 --- a/.env.test.example +++ /dev/null @@ -1,21 +0,0 @@ -# Test Environment Configuration -# Copy this file to .env.test and fill in your test credentials - -# Bluesky Test Account Credentials -# Create a dedicated test account on bsky.social for testing -TEST_BLUESKY_USERNAME=your-test-user.bsky.social -TEST_BLUESKY_PASSWORD=your-test-password - -# Application URLs -TEST_APP_URL=http://localhost:3000 - -# Test Database (if using separate test DB) -TEST_SURREALDB_URL=ws://localhost:8000/rpc -TEST_SURREALDB_NS=test -TEST_SURREALDB_DB=ponderants_test -TEST_SURREALDB_USER=root -TEST_SURREALDB_PASS=root - -# API Keys for Testing (optional - can use same as dev) -# TEST_GOOGLE_GENERATIVE_AI_API_KEY=your-test-api-key -# TEST_DEEPGRAM_API_KEY=your-test-api-key diff --git a/.gitignore b/.gitignore index 87c1fb1..a249744 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,6 @@ next-env.d.ts /playwright-report/ /playwright/.cache/ .playwright-mcp/ + +# claude settings (keep .claude/CLAUDE.md but ignore user settings) +.claude/settings.local.json diff --git a/history.txt b/history.txt deleted file mode 100644 index 368241d..0000000 --- a/history.txt +++ /dev/null @@ -1,6 +0,0 @@ -#V2 -SELECT id, title, embedding IS NOT NONE as has_embedding, coords_3d IS NOT NONE as has_coords FROM node LIMIT 10; -SELECT count() as total FROM node GROUP ALL; SELECT count() as with_embeddings FROM node WHERE embedding IS NOT NONE GROUP ALL; SELECT count() as with_coords FROM node WHERE coords_3d IS NOT NONE GROUP ALL; -SELECT id, title, user_did FROM node LIMIT 5; -SELECT * FROM links_to LIMIT 10; -SELECT id, title, coords_3d FROM node LIMIT 5;