-
Notifications
You must be signed in to change notification settings - Fork 7
Getting Started

quickfire.wiki.git repo or when onboarding a new machine. It mirrors the setup that README.md documents but adds the wiki-specific context.
-
.NET SDK 9.0.100+ with ASP.NET, EF Core, and MAUI workloads (
dotnet workload install maui blazor wasm-tools) - Node/WebView2 – WebView2 runtime is required for the MAUI desktop shell
-
SQL Server 2025 (preferred for vector search) or SQLite (set via
DEFAULTCONNECTIONor skip for local SQLite) - Syncfusion License – register for a free open source license at syncfusion.com and keep the license string handy
-
OpenAI + Qdrant access –
OPENAIAPI key is required for OpenAIAgent/OpenAIPro, Qdrant URL/API key optional but recommended for embeddings - RingCentral / ePayPolicy / DocuSign / Microsoft Graph / Azure Document Intelligence / LLMWhisperer credentials (optional) entered later through the Integration Settings pages
- Connection String To Your External Database (optional) - for integration of certificate requests, web chat and other client portal functions.
The desktop app has a configuration screen or just create an .env next to Surefire.sln:
DEFAULTCONNECTION=Server=.;Database=Quickfire;Trusted_Connection=True;TrustServerCertificate=true;
OPENAI=sk-...
SYNCFUSION=YOUR-LICENSE
QDRANT_BASE_URL=http://localhost:6333/
QDRANT_API_KEY=local-dev
QUICKFIRE_DATA_DIRECTORY=C:\QuickfireData(optional desktop storage)
QUICKFIRE_SEED_DEMO=true (optional demo data on first run)
The app will fall back to SQLite (
Data/MigrationsLocal) whenDEFAULTCONNECTIONis empty.
git clone https://github.com/flashvenom/quickfire.git
cd quickfire
# Restore solution
dotnet restore Quickfire.sln# Pick the provider that matches your env var
# SQLite (Local):
dotnet ef database update --project src/Quickfire.Blazor/Surefire.csproj --context ApplicationDbContext -- --migrations "Data/MigrationsLocal"
# SQL Server (Remote/Desktop flavor):
dotnet ef database update --project src/Quickfire.Blazor/Surefire.csproj --context ApplicationDbContext -- --migrations "Data/MigrationsRemote"Exclude the migrations folder you are not using from the solution (or unload it in VS) to avoid designer confusion.
cd src/Quickfire.Blazor
dotnet watch run- Seeds demo data if
SUREFIRE_SEED_DEMO=true - Registers integrations in
Program.cs(DocuSign, RingCentral, ePayPolicy, Graph, Agent stack)
Run the publish + MAUI target when testing the desktop SKU:
# Publish Blazor host with desktop flavor
dotnet publish src/Quickfire.Blazor/Surefire.csproj -c Debug -p:SurefireMigrationsFlavor=Local
# Package into MAUI assets
cd src/Quickfire.Desktop
dotnet msbuild Quickfire.csproj /t:PrepareSurefireHostPackage /p:TargetFramework=net9.0-windows10.0.19041.0 /p:Configuration=Debug
# Launch MAUI shell
dotnet run --project Quickfire.csproj -f net9.0-windows10.0.19041.0 -c DebugMore detail: guides/Desktop-Builds.
- Navigate to Profile → System Settings (
src/Quickfire.Blazor/Domain/Profile/Components/SystemSettings.razor) - Enter plugin lockbox values (OpenAI override, Syncfusion, local storage path, toggles)
- Use the dedicated settings tabs for RingCentral, ePayPolicy, DocuSign, Graph, etc. Settings are stored in
IntegrationKeyValuesviaIntegrationKeyValueService.
-
OPENAImissing →OpenAIAgentandOpenAIProlog "Missing API key" and show disabled UI - Syncfusion license missing →
SyncfusionLicenseProvider.RegisterLicensethrows and UI components fail to render - Desktop publish missing → Quickfire.Desktop warns that
Build/Desktop/Surefireis empty - Gateway/tray offline → webhooks (SMS, phone, tray commands) show warnings in
StateService.UpdateStatus
With the basics in place, continue through the feature pages or jump into System-Architecture to understand how services wire together.
Quickfire Wiki • Generated from Qf-Docs/wiki • Last updated: 2025-11-14.
See the main repo for README + issues.
- Home
- Getting Started
- System Architecture
- Release Notes
- Features
- Agents & AI
- Reference
- Guides
- Integrations
- Archive