Assistant for aiding conversational fluency for Japanese language, with a focus out output.
Monorepo for a Go managed Pocketbase backend-as-a-service, SwiftUI Apple multiplatform native application, SvelteKit frontend webapp, and potentially even a TUI via Rust's Ratatui. We are interested in trying to make version of this app across various other native frameworks as a learning experiment.
Users should utilize devenv to get involved with this project.
This assumes you have a working NixOS or Nix Home-Manager install with the devenv and direnv packages included.
Then, you simply need to direnv allow the root folder and all projects can be spun up with devenv up.
Decided to use this tiered system to save on costs from calling a hosted database too often. This also lets us take advantage of iCloud to sync across apple devices without needing to rely on the Pocketbase API for that.
┌───────────────┐
│ Remote DB │ ← Pocketbase (canonical source of truth)
└───────┬───────┘
│ fetch / push
▼
┌───────────────┐
│ Local DB │ ← SwiftData / ModelContainer (persistent on device)
└───────┬───────┘
│ read / write
▼
┌───────────────┐
│ Store │ ← ObservableObject / GrammarStore (session cache)
└───────┬───────┘
│ bind / observe
▼
┌───────────────┐
│ Views │ ← SwiftUI UI, reads/writes via the store
└───────────────┘
curl -X POST "https://demo.fushigi.bunkbed.tech/api/collections/journal_entry/records" \
-H "Authorization: Bearer YOUR_TOKEN_HERE" \
-H "Content-Type: application/json" \
-d '{
"title": "Test Journal Entry",
"content": "Today I practiced Japanese.",
"private": true,
"user": "YOUR_USER_ID"
}'
curl -X GET "https://demo.fushigi.bunkbed.tech/api/collections/journal_entry/records?expand=user" \
-H "Authorization: Bearer YOUR_TOKEN_HERE"