Skip to content

Commit 9f4f77c

Browse files
refactor: rename database file to sqlite.db
Use a generic name that won't break across rebrands. Copied old engineer-ai.db data into the new file. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 22aaf02 commit 9f4f77c

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
3434
.DS_Store
3535

3636
# relay
37-
relay.db
38-
relay.db-wal
39-
relay.db-shm
37+
sqlite.db
38+
sqlite.db-wal
39+
sqlite.db-shm
4040
relay.pid
4141
config.json
4242
.relay-worktrees/

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Auth tokens are stored in SQLite (in `source_configs.config` JSON and `telegram_
171171
### Files That Should Never Be Committed
172172

173173
- `config.json` — contains auth tokens and project paths (legacy, auto-imported)
174-
- `relay.db` / `relay.db-wal` / `relay.db-shm` — local state
174+
- `sqlite.db` / `sqlite.db-wal` / `sqlite.db-shm` — local state
175175
- `relay.pid` — daemon PID file
176176
- `.relay-worktrees/` — temporary worktrees
177177
- `relay.stdout.log` / `relay.stderr.log` — service logs

src/daemon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class Daemon {
5757

5858
async start() {
5959
// Init DB
60-
const dbPath = join(this.baseDir, "relay.db");
60+
const dbPath = join(this.baseDir, "sqlite.db");
6161
this.db = new IssueDB(dbPath);
6262
this.configDB = new ConfigDB(this.db.getDatabase());
6363

0 commit comments

Comments
 (0)