app

Local-first trade for farms and co-ops
git clone https://radroots.dev/git/app.git
Log | Files | Refs | README | LICENSE

ModeNameSize
-rw-r--r--.gitignore36L
-rw-r--r--AGENTS.md67L
-rw-r--r--CONTRIBUTING.md64L
-rw-r--r--Cargo.lock9433L
-rw-r--r--Cargo.toml69L
-rw-r--r--LICENSE674L
-rw-r--r--README.md57L
-rw-r--r--crates/desktop/Cargo.toml47L
-rw-r--r--crates/desktop/src/accounts.rs745L
-rw-r--r--crates/desktop/src/app.rs364L
-rw-r--r--crates/desktop/src/lib.rs20L
-rw-r--r--crates/desktop/src/main.rs5L
-rw-r--r--crates/desktop/src/menus.rs48L
-rw-r--r--crates/desktop/src/pack_day_host_handoff.rs631L
-rw-r--r--crates/desktop/src/pack_day_print.rs1692L
-rw-r--r--crates/desktop/src/remote_signer.rs564L
-rw-r--r--crates/desktop/src/runtime.rs21522L
-rw-r--r--crates/desktop/src/source_guards.rs1752L
-rw-r--r--crates/desktop/src/window.rs18824L
-rw-r--r--crates/i18n/Cargo.toml18L
-rw-r--r--crates/i18n/build.rs31L
-rw-r--r--crates/i18n/src/keys.rs843L
-rw-r--r--crates/i18n/src/lib.rs1435L
-rw-r--r--crates/runtime/Cargo.toml31L
-rw-r--r--crates/runtime/src/lib.rs51L
-rw-r--r--crates/runtime/src/logging.rs492L
-rw-r--r--crates/runtime/src/pack_day_export.rs485L
-rw-r--r--crates/runtime/src/paths.rs622L
-rw-r--r--crates/runtime/src/runtime.rs664L
-rw-r--r--crates/runtime/src/sdk.rs2357L
-rw-r--r--crates/runtime/src/startup.rs71L
-rw-r--r--crates/signer/Cargo.toml26L
-rw-r--r--crates/signer/src/error.rs60L
-rw-r--r--crates/signer/src/input.rs182L
-rw-r--r--crates/signer/src/lib.rs28L
-rw-r--r--crates/signer/src/protocol.rs820L
-rw-r--r--crates/signer/src/session.rs506L
-rw-r--r--crates/state/Cargo.toml19L
-rw-r--r--crates/state/src/lib.rs4344L
-rw-r--r--crates/store/Cargo.toml25L
-rw-r--r--crates/store/migrations/0001_init.sql77L
-rw-r--r--crates/store/migrations/0002_activity_journal.sql33L
-rw-r--r--crates/store/migrations/0003_account_surface_activation.sql9L
-rw-r--r--crates/store/migrations/0004_account_farm_setup.sql30L
-rw-r--r--crates/store/migrations/0005_products_workflow.sql47L
-rw-r--r--crates/store/migrations/0006_farm_rules_workspace.sql53L
-rw-r--r--crates/store/migrations/0007_activity_farm_settings_section.sql54L
-rw-r--r--crates/store/migrations/0008_orders_and_pack_day.sql15L
-rw-r--r--crates/store/migrations/0009_buyer_marketplace.sql29L
-rw-r--r--crates/store/migrations/0010_sync_contract_alignment.sql82L
-rw-r--r--crates/store/migrations/0011_reminders.sql72L
-rw-r--r--crates/store/migrations/0012_local_interop_imports.sql40L
-rw-r--r--crates/store/migrations/0013_local_interop_projection_cursor.sql5L
-rw-r--r--crates/store/migrations/0014_buyer_order_coordination.sql18L
-rw-r--r--crates/store/migrations/0015_buyer_order_listing_identity.sql22L
-rw-r--r--crates/store/migrations/0016_deterministic_outbox.sql77L
-rw-r--r--crates/store/migrations/0017_product_category.sql1L
-rw-r--r--crates/store/migrations/0018_listing_relay_provenance.sql3L
-rw-r--r--crates/store/migrations/0019_relay_ingest_freshness.sql19L
-rw-r--r--crates/store/migrations/0020_declined_order_status.sql163L
-rw-r--r--crates/store/migrations/0021_local_interop_signed_event_evidence.sql17L
-rw-r--r--crates/store/migrations/0022_order_workflow_revision.sql4L
-rw-r--r--crates/store/migrations/0023_order_workflow_display_projection.sql34L
-rw-r--r--crates/store/migrations/0024_order_workflow_agreement_states.sql1L
-rw-r--r--crates/store/migrations/0025_order_workflow_agreement_projection.sql186L
-rw-r--r--crates/store/migrations/0026_order_validation_receipt_projection.sql28L
-rw-r--r--crates/store/migrations/0027_local_interop_validation_receipt_projection_kind.sql103L
-rw-r--r--crates/store/migrations/0028_sdk_migration_receipts.sql38L
-rw-r--r--crates/store/src/error.rs108L
-rw-r--r--crates/store/src/interop.rs8808L
-rw-r--r--crates/store/src/lib.rs1448L
-rw-r--r--crates/store/src/migration_audit.rs1555L
-rw-r--r--crates/store/src/migrations.rs132L
-rw-r--r--crates/store/src/repo/activation.rs213L
-rw-r--r--crates/store/src/repo/activity.rs359L
-rw-r--r--crates/store/src/repo/buyer.rs4302L
-rw-r--r--crates/store/src/repo/farm_rules.rs1244L
-rw-r--r--crates/store/src/repo/farm_setup.rs390L
-rw-r--r--crates/store/src/repo/mod.rs41L
-rw-r--r--crates/store/src/repo/order_detail.rs219L
-rw-r--r--crates/store/src/repo/orders.rs2306L
-rw-r--r--crates/store/src/repo/products.rs1143L
-rw-r--r--crates/store/src/repo/reminders.rs529L
-rw-r--r--crates/store/src/repo/today.rs788L
-rw-r--r--crates/store/src/repo/workflow.rs75L
-rw-r--r--crates/store/src/sdk_migration_receipts.rs316L
-rw-r--r--crates/store/src/sync.rs1380L
-rw-r--r--crates/sync/Cargo.toml18L
-rw-r--r--crates/sync/src/lib.rs717L
-rw-r--r--crates/sync/src/publish.rs1131L
-rw-r--r--crates/types/Cargo.toml15L
-rw-r--r--crates/types/src/lib.rs949L
-rw-r--r--crates/ui/Cargo.toml17L
-rw-r--r--crates/ui/src/lib.rs34L
-rw-r--r--crates/ui/src/primitives.rs1506L
-rw-r--r--crates/ui/src/text.rs215L
-rw-r--r--crates/ui/src/theme.rs501L
-rw-r--r--crates/view/Cargo.toml22L
-rw-r--r--crates/view/src/lib.rs4028L
-rw-r--r--docs/design/ios/setup.png252973B
-rw-r--r--i18n/id_salt.txt1L
-rw-r--r--i18n/locales/en/messages.json822L
-rw-r--r--i18n/mf2_i18n.toml3L
-rw-r--r--platforms/macos/App/Resources/AppIconSource.png661875B
-rw-r--r--platforms/macos/App/Resources/Info.plist28L
-rwxr-xr-xplatforms/macos/Scripts/build_host.sh138L
-rwxr-xr-xplatforms/macos/Scripts/build_icon.sh83L
-rwxr-xr-xplatforms/macos/Scripts/run_host.sh118L
-rwxr-xr-xplatforms/macos/Scripts/test_host.sh206L
-rw-r--r--rust-toolchain.toml8L
-rwxr-xr-xscripts/check.sh19L
-rwxr-xr-xscripts/run.sh27L