feat (added) : desktop-tauri integration of the app#6
Merged
Merged
Conversation
- Add @tauri-apps/cli as a dev dependency for desktop app development - Add Tauri build scripts (tauri, tauri:dev, tauri:build) to package.json - Update .gitignore to exclude Tauri build artifacts and configuration files - Update bun.lock with Tauri CLI platform-specific binaries for cross-platform support - Remove configVersion from bun.lock lockfile metadata
- Add `output: 'export'` to enable static HTML export for Tauri deployment - Disable Next.js image optimization with `unoptimized: true` for static builds - Prepare application for desktop build pipeline with Tauri CLI integration
- Update project title and description to reflect local-first, offline-capable nature - Add prerequisites for Rust toolchain required for desktop app development - Separate installation and build instructions for web and desktop apps - Add Tauri development and build commands for native desktop application - Include Tauri 2.0 in technology stack section - Expand features list with local-first, offline, and privacy highlights - Add reference to TAURI_AUDIT_LOG.md for desktop architecture documentation - Clarify that app is available as both web and native desktop versions
- Add PNG icons in multiple resolutions (32x32, 64x64, 128x128, 256x256) - Add high-DPI variant ([email protected]) for retina displays - Add macOS icon file (icon.icns) for native app packaging - Add Windows icon file (icon.ico) for executable branding - Add generic icon.png for cross-platform reference - Include .gitkeep with documentation for icon generation workflow - Enables proper branding and visual identity for Tauri desktop application
- Add acl-manifests.json with core plugin permissions and capability definitions - Add capabilities.json schema for Tauri capability configurations - Add desktop-schema.json for desktop-specific platform schema - Add windows-schema.json for Windows-specific platform schema - These generated schemas are required for Tauri's access control list system and platform-specific configurations
- Add tauri.conf.json with application metadata and version information - Configure build commands to use bun for dev and production builds - Set frontend distribution path to Next.js static export output directory - Define application window properties with 1200x800 default size and 800x600 minimum - Configure bundle settings with all target platforms and application icons - Add Windows-specific signing configuration with SHA256 digest algorithm - Set up Content Security Policy for secure resource loading and localhost development - Enable window decorations, resizing, and center positioning on launch
- Add Cargo.toml manifest for Tauri Rust backend - Configure package metadata with name, version, and description - Add tauri-build as build dependency for compilation - Include core dependencies: tauri, tauri-plugin-shell, serde, and serde_json - Enable devtools feature for development debugging - Configure custom-protocol feature as default for app communication - Establish Rust edition 2021 for modern language features
- Create main.rs as the Tauri application entry point - Initialize Tauri builder with shell plugin for system command execution - Configure Windows subsystem to prevent console window in release builds - Add placeholder comments for future filesystem bridge implementation - Establish foundation for zero-IPC architecture with web app running in WebView
- Add build.rs entry point for Tauri build process - Initialize tauri_build::build() to handle pre-compilation steps - Enable proper compilation of Tauri resources and configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.