This project provides a boilerplate for building a desktop viewer for Flow Production Tracking (folmery ShotGrid). It leverages Tauri to create a secure and performant desktop application using Rust for backend logic, Svelte for the frontend, and DuckDB for local data processing.
The primary aim of this project is to provide a robust starting point for developing a Flow Production Tracking viewer for folmery ShotGrid.
The application securely handles authentication, queries ShotGrid’s REST API, and caches data locally in DuckDB for efficient analytics and offline usage. By embedding configuration and schema files at compile time, the application eliminates external file dependencies, leading to more reliable distribution.
By combining modern tools and techniques, it ensures smooth local operation and an excellent developer experience.
FlowProductionTracking/
├── src/ # SvelteKit frontend
├ ├── routes/
│ ├── +layout.svelte # Global layout for SvelteKit pages
│ ├── +page.svelte # Main UI page
│ ├── app.html # Main HTML template
│ └── index.html # Entry point for the application
├── src-tauri/
│ ├── src/
│ ├── assets.rs # Embedded resources (e.g. CONFIG_TOML, SG_SCHEMA_SQL)
│ ├── auth.rs # Authentication and token refresh logic
│ ├── config.rs # Configuration loading (using embedded config)
│ ├── db.rs # DuckDB access and schema management
│ ├── error.rs # Custom error types using thiserror
│ ├── api.rs # ShotGrid API communication and data fetching
│ ├── token.rs # Token management and secure storage integration
│ └── main.rs # Tauri setup, command registration, and app entry point
├── config.toml # Original configuration file (embedded into the binary)
├── sg_schema.sql # ShotGrid schema file (embedded into the binary)
├── static/ # Static assets (images, fonts, etc.)
├── svelte.config.js
├── vite.config.js
└── package.json
Clone the Repository
git clone <repository-url>
cd TauriShotgridIntegration
Install Dependencies
npm install
Build or Run the Application Because configuration and schema are embedded, any changes to config.toml or sg_schema.sql require a recompile:
npm run tauri dev
npm run tauri build
Configure the Application
The configuration is embedded into the binary at compile time using the configuration file (config.toml
).
Modify config.toml
as needed, then rebuild the project to apply the changes.
This project is licensed under the MIT license.