You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enterprise-grade developer productivity and client management platform
DevBlueprint unifies project planning, time tracking, client relationships, and proposal-to-invoice workflows in a single, secure application. Built for freelancers, agencies, and engineering teams who need to move from idea to delivered workβand get paidβwithout switching tools.
Freelance developers, small dev shops, and teams that need a single source of truth for work and billing.
Differentiator
AI-assisted project blueprints and proposal content, Kanban task boards, shareable proposal links, and a modern, themeable UI.
β¨ Features
π Dashboard
Capability
Description
At-a-glance metrics
Active projects, active clients, hours logged this month, and unbilled amount in your preferred currency.
Recent activity
Recent projects and recent time logs for quick context.
Upcoming work
Upcoming tasks across projects so you can prioritize.
ποΈ Projects
Capability
Description
Project types
Website, web application, mobile app, API, CLI, or otherβwith type-specific defaults.
AI-generated blueprints
Optional generation of core features, milestones, risk factors, technical requirements, feature dependencies, and integrations from a short brief (powered by Google Gemini).
Kanban board
Drag-and-drop task board with configurable columns (e.g. Backlog β Todo β In Progress β In Review β Done).
Task metadata
Priority (P1βP3), category (dev, design, content, SEO, DevOps, testing, other), and effort (low/medium/high).
Project banner
Optional banner image for visual identity.
Client linkage
Associate projects with clients for reporting and billing.
π₯ Clients
Capability
Description
Contact & company
Name, company, email, phone, website, address, and notes.
Billing defaults
Hourly rate and currency (e.g. GBP, USD) for time and invoices.
Status
Active, inactive, or archived.
Avatar colour
Optional colour for quick visual identification.
π Proposals
Capability
Description
Pre-project scope
Title, description, type, tech stack, target audience, goals, and constraints.
AI-generated content
Optional generation of proposal narrative and structure (Gemini).
Estimated price
Optional AI or manual estimated price for the engagement.
Slides / structure
Support for slide-based or structured proposal content.
Shareable links
Public share via tokenised URL so clients can view without logging in.
Conversion to project
Turn an agreed proposal into a project with one action.
Status
Draft, sent, agreed, or declined.
β±οΈ Time logs
Capability
Description
Client & project
Log time against a client and optionally a project.
Billable flag
Mark entries as billable or non-billable.
Rate override
Optional hourly rate and currency per entry.
Invoice linkage
Attach time entries to an invoice for billing.
Date
Log against a specific date for accurate reporting.
π§Ύ Invoices
Capability
Description
Invoice number
Unique invoice number per client/engagement.
Totals
Subtotal, tax rate, tax amount, and total in your chosen currency.
Dates
Issue date and due date.
Status
Draft, sent, paid, overdue, or cancelled.
Time log attachment
Pull in time log lines for amount calculation.
π Reports
Capability
Description
Reporting views
Time and billing insights across clients and projects.
π Authentication & account
Capability
Description
Email/password
Sign up, login, forgot password, and reset password via Supabase Auth.
Session handling
Secure, HTTP-only cookie-based sessions with Supabase SSR.
Account deletion
Optional server-side account cleanup using the Supabase service role (when configured).
π¨ User experience
Capability
Description
Theme
Light and dark mode with optional system preference detection.
Command palette
Global search and navigation (e.g. βK).
Responsive layout
Sidebar navigation and layouts that adapt to screen size.
Toasts
Consistent notification feedback for actions (Sonner).
ποΈ Architecture
High-level flow from client and proposal through to invoicing:
flowchart LR
subgraph intake["Intake"]
C[Clients]
P[Proposals]
end
subgraph delivery["Delivery"]
PR[Projects]
T[Tasks]
TL[Time Logs]
end
subgraph billing["Billing"]
I[Invoices]
R[Reports]
end
C --> P
P -->|"Agreed"| PR
C --> PR
PR --> T
PR --> TL
C --> TL
TL --> I
C --> I
I --> R
TL --> R
Loading
Application and data layer:
flowchart TB
subgraph client["Client"]
UI[Next.js App Router]
RSC[React Server Components]
end
subgraph api["API layer"]
Route[Route handlers]
Gen[AI generation endpoints]
end
subgraph backend["Backend"]
SB[(Supabase)]
PG[(Postgres)]
Auth[Supabase Auth]
end
subgraph external["External"]
Gemini[Google Gemini API]
end
UI --> RSC
UI --> Route
Route --> SB
Gen --> Gemini
Gen --> SB
SB --> PG
SB --> Auth
Row Level Security (RLS) is enabled on all tables so that users can only access their own rows. Schema is versioned via Supabase migrations in supabase/migrations/.
π€ AI capabilities
When a Gemini API key is configured, DevBlueprint can:
Without an API key, the app runs with AI features disabled or with rule-based fallbacks where implemented. No secrets are exposed to the client; generation runs server-side only.
π Security & compliance
Area
Approach
Authentication
Supabase Auth (email/password). Passwords are not stored in application code.
Authorization
Postgres RLS so each user sees only their own clients, projects, tasks, proposals, time logs, and invoices.
Secrets
API keys and service role keys live in environment variables only; .env is gitignored.
Server-side AI
Gemini is called from route handlers; keys never sent to the browser.
Session
Supabase SSR client with secure, HTTP-only cookies.
π€ Contributing
Fork the repository.
Create a branch from main for your change.
Implement your change and run the project linter.
Open a pull request with a clear description and scope.
π License
This project is licensed under the MIT License. See the LICENSE file for details.
DevBlueprint β plan, deliver, and get paid from one place.
About
DevBlueprint is a full-stack SaaS for freelancers and small dev teams: create projects with AI-generated blueprints and task lists, log time, link work to clients, and turn proposals into invoices.