Your music, beautifully tracked. All yours. (coming soon) teal.fm
teal-fm atproto

fix misc thingies

Changed files
+14 -11
.vscode
tools
teal-cli
src
+10 -7
.env.template
··· 2 2 NODE_ENV=development 3 3 PORT=3000 4 4 HOST=0.0.0.0 5 - PUBLIC_URL=A publicly accessible url for aqua 5 + PUBLIC_URL= # A publicly accessible url for aqua 6 6 DB_USER=postgres 7 7 DB_PASSWORD=supersecurepassword123987 8 8 DB_NAME=teal 9 9 DATABASE_URL="postgresql://${DB_USER}:${DB_PASSWORD}@localhost:5432/${DB_NAME}" 10 10 DOCKER_DB_URL="postgresql://${DB_USER}:${DB_PASSWORD}@host.docker.internal:5432/${DB_NAME}" 11 - #This is not currently being used fully so can just use this default pubkey for now 11 + # `cargo run --bin teal gen-key` to generate a new pubkey 12 12 DID_WEB_PUBKEY=zQ3sheEnMKhEK87PSu4P2mjAevViqHcjKmgxBWsDQPjLRM9wP 13 - CLIENT_ADDRESS=A publicly accessible host for amethyst like amethyst.teal.fm 14 - PUBLIC_DID_WEB=did:web:{aqua's PUBLIC_URL goes here after did:web:} 13 + CLIENT_ADDRESS= # A publicly accessible host for amethyst like amethyst.teal.fm 14 + PUBLIC_DID_WEB= # did:web:{aqua's PUBLIC_URL goes here after did:web:} 15 + 16 + # amethyst 17 + EXPO_PUBLIC_DID_WEB= # same as PUBLIC_DID_WEB 18 + EXPO_PUBLIC_BASE_URL= # same as CLIENT_ADDRESS but with http scheme like https://amethyst.teal.fm 15 19 16 - #amethyst 17 - EXPO_PUBLIC_DID_WEB=same as PUBLIC_DID_WEB 18 - EXPO_PUBLIC_BASE_URL=same as CLIENT_ADDRESS but with http scheme like https://amethyst.teal.fm 20 + SQLX_OFFLINE=true 21 + SQLX_OFFLINE_DIR="./.sqlx"
+3
.gitignore
··· 65 65 vendor/**/*.d.ts 66 66 vendor/**/dist/ 67 67 vendor/**/node_modules/ 68 + 69 + # claude 70 + .claude
-3
.vscode/settings.json
··· 1 - { 2 - "deno.enable": false 3 - }
+1 -1
tools/teal-cli/src/main.rs
··· 31 31 force: bool, 32 32 33 33 /// Output format: json, multibase, or files 34 - #[arg(short, long, default_value = "files")] 34 + #[arg(long, default_value = "files")] 35 35 format: String, 36 36 }, 37 37