- Set JOURNAL_PROJECT_ROOT and CWD when spawning sidecar so data lands at repo root instead of under src-tauri/ (fixes dev watcher hot-reload loop triggered by schema file writes) - Add backend client layer (auth.ts, client.ts, fragments.ts, types.ts) - Wire vault unlock flow with password prompt modal on locked DB - Update fragments store with full sidecar CRUD integration - Update EditorPanel and AppModal for fragment editing support - Gitignore runtime journal/ and logs/ directories Co-Authored-By: Oz <oz-agent@warp.dev>
44 lines
433 B
Plaintext
44 lines
433 B
Plaintext
# Build output
|
|
bin/
|
|
obj/
|
|
|
|
# Visual Studio
|
|
.vs/
|
|
*.user
|
|
*.suo
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
# Rider
|
|
.idea/
|
|
*.sln.iml
|
|
|
|
# VS Code
|
|
.vscode/
|
|
|
|
# NuGet
|
|
*.nupkg
|
|
**/packages/
|
|
project.lock.json
|
|
project.fragment.lock.json
|
|
.nuget/
|
|
.dotnet_home/
|
|
.journal-sidecar/
|
|
|
|
# Publish output
|
|
publish/
|
|
|
|
# User secrets
|
|
secrets.json
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Runtime journal data (created by sidecar at repo root)
|
|
journal/
|
|
logs/
|
|
|
|
# macOS
|
|
.DS_Store
|