- Fixed price
- Intermediate
- Est. budget: $500.00
We run operations for a small financial-services firm and our team is buried under a stack of tools that don't talk to each other. We need a custom internal tool: a customer portal our clients and staff log into instead of juggling spreadsheets and half a dozen apps. First-phase scope: - A web application (Next.js or similar) with role-based access for admins, staff, and clients. - A Stripe billing integration that saves a card on file and runs autopay, plus ACH payment support. - A QuickBooks integration for nightly reconciliation so our books stay correct. - Light workflow automation and an API integration layer to wire up a few third-party services and replace a fragile Zapier setup that keeps breaking. - An admin dashboard and a client-facing dashboard that read live from our systems, not last week's export. A later phase may add an AI assistant, a chatbot over our own data, so staff can ask a question and get pointed to the right record. This is an ongoing project and we want a senior developer who can own the architecture end to end. Please share a couple of relevant portals or internal tools you've built.
- Fixed price
- Intermediate
- Est. budget: $2,500.00
I need the creation of a public-facing website for a cemetery and a secure administration section to handle the management of plots, buildings, customers, cremations, etc. using React and Supabase. The project requires both front-end and back-end development skills, focusing on web development and database management.
- Fixed price
- Expert
- Est. budget: $120,000.00
Existing founder is looking for a full stack engineer to be the founding engineer at Socratix, an agentic AI powered data platform for sales teams connecting Zoom, Teams and other communication data together to drive insights and deals. Product is currently in MVP state and requires development to a SOC II production grade platform for early customers. Ideally, this role becomes full time as part of the founding team presenting to investors later in the year. Must have an understanding and appetite for startups and working in an unstructured environment with a build mentality. Part time is an option for Sr. experienced engineers who have the capacity to execute rapidly due to their experience. Equity and salary will be discussed. Founder is in NY, NJ, but open to locations. Remote role.
- Fixed price
- Expert
- Est. budget: $2,000.00
I am an emergency physician who has built a functioning clinical documentation web application called ED Scribe. The front end is already built and working well. This is not a request to redesign or rebuild the application. I am looking for an experienced healthcare/cloud security developer to build and deploy a small, secure backend that will allow ED Scribe to send clinical text to the OpenAI API in an architecture suitable for HIPAA-regulated use. I am specifically looking for someone with real experience deploying healthcare applications involving PHI, BAAs, HIPAA-eligible cloud infrastructure, secure API design, and OpenAI or similar LLM APIs. Please do not apply if your experience is primarily general web development without healthcare/HIPAA infrastructure experience. Current Architecture ED Scribe is a React/TypeScript application built using Lovable. Patient encounter working data currently stays in: React state browser localStorage There is intentionally no cloud patient database. Account/authentication/subscription information may exist in the application's backend, but patient encounters should remain completely separate from account data. Currently, two AI functions transmit clinical text: Generate ED Note Generate disposition documentation, including discharge instructions/admission handoff Those calls currently follow approximately: Browser → Supabase/Lovable Edge Function → Lovable AI Gateway → Google Gemini I want this clinical-data pathway removed. Desired Architecture The final clinical data pathway should be: ED Scribe browser ↓ Secure backend API controlled by me ↓ OpenAI API using my organization's BAA-covered API account ↓ Secure backend ↓ ED Scribe browser Generated clinical documentation should return to the browser and continue to be stored locally. Important design goal I do not want to create a cloud repository of patient encounters. The backend should function primarily as a secure, stateless processing layer. One request comes in, one OpenAI request is made, the generated documentation is returned, and the clinical request/response is not intentionally persisted by our infrastructure.Scope of Work 1. Recommend and configure HIPAA-capable hosting Recommend an appropriate platform such as AWS, Azure, or Google Cloud. The hosting environment must: support HIPAA workloads allow execution of an appropriate BAA use appropriate encryption securely manage secrets support access controls/IAM allow PHI-safe logging configuration provide HTTPS/TLS be maintainable by a small SaaS business Please explain your recommendation before deployment. I am looking for a relatively simple architecture, not unnecessary enterprise complexity. 2. Build the ED Scribe API Create a secure endpoint similar to: POST /api/generate-ed-note It should accept: generation type clinical summary random request identifier Supported generation types will initially include: ED note generation discharge instructions admission handoff The endpoint should validate inputs and reject unsupported request types. 3. Integrate OpenAI server-side OpenAI API calls must occur only from the backend. The OpenAI API key must never appear in: browser code React frontend client-side environment variables localStorage Git repository browser network responses Use server-side secret management. The OpenAI model should be configurable without changing application code. I intend to use an OpenAI organization/project covered by an executed BAA and appropriately provisioned for HIPAA-eligible API use. The backend should use an appropriate HIPAA-eligible OpenAI API endpoint/configuration. Where appropriate, requests should use: store: false The clinical workflow should be stateless. Do not use persistent conversations, threads, vector stores, files, web search, MCP, or other unnecessary services for patient encounters. 4. Prevent PHI logging This is a critical requirement. Clinical request and response contents should not appear in ordinary application logs. Do not log: patient summaries generated notes HPI MDM diagnoses discharge instructions admission handoffs names MRNs DOBs clinical narratives request bodies response bodies Operational logging may include appropriate metadata such as: timestamp random request ID response status latency model token usage generic/sanitized error category Raw provider errors should not be logged if they could echo PHI. Cloud-provider request/body logging must also be reviewed and configured appropriately. 5. Authentication and authorization The backend must not simply expose a public OpenAI proxy. Implement secure authentication so only authorized ED Scribe users can make generation requests. ED Scribe already has user registration/login and subscription functionality. The developer should integrate the secure backend with the existing authentication system where practical. The backend should be able to verify: authenticated user authorization to use ED Scribe Do not use patient information as part of authentication. Do not rely on CORS alone for security. 6. Standard API protections Implement appropriate: HTTPS/TLS authentication authorization input validation payload-size limits rate limiting CORS restrictions secure secret storage sanitized error messages server-side security controls dependency/security configuration Production errors must not expose stack traces or secrets. 7. Preserve the existing application This project should make minimal changes to the working ED Scribe front end. Do not redesign: user interface clinical workflow patient navigation note structure procedure workflow EKG workflow disposition workflow payment page registration system The current clinical prompts are important and should initially be transferred to the new OpenAI pathway as faithfully as possible. This project is primarily a transport/security/backend migration, not a clinical prompt redesign. 8. Remove the existing clinical AI pathway After the new backend is functioning, clinical text should no longer pass through: Lovable AI Lovable AI Gateway Google Gemini the existing Supabase/Lovable generate-ed-note Edge Function unapproved analytics or telemetry services There should be no fallback to the old AI pathway. If the approved backend is unavailable, ED Scribe should fail closed and keep the clinical information local. 9. Preserve local-first patient data architecture Do not move patient encounters into a cloud database. Patient working data should continue to remain in the browser unless transmission to OpenAI is necessary for the requested generation operation. Do not create: cloud patient histories saved encounter databases cloud note backups synchronized patient lists Account/subscription information and patient encounter information should remain separate data domains. Security / Data Flow Audit Required At completion, I want a written technical report answering: Exactly what clinical information leaves the browser? Which hostname/service receives it? Does any clinical text reach Lovable? Does any clinical text reach Supabase infrastructure? Does any clinical text reach Google/Gemini? Does any clinical text appear in application logs? Could clinical text appear in cloud-provider logs? Does any analytics/telemetry platform receive clinical data? Where is the OpenAI API key stored? Can the browser ever access the OpenAI API key? Is any clinical request/response intentionally stored server-side? What OpenAI endpoint/features are being used? How is the backend authenticated? How is authorization enforced? How are secrets managed? What services involved in processing/transmitting PHI require BAAs? Are there any remaining HIPAA/security issues you believe should be addressed before production use? I also want an architecture diagram of the final data flow. Deliverables At completion I should receive: deployed secure backend working ED Scribe → backend → OpenAI integration backend source code infrastructure/configuration documentation deployment instructions list of cloud services being used list of required BAAs/service agreements explanation of secret management authentication documentation logging configuration security/data-flow audit architecture diagram basic operational instructions instructions for rotating the OpenAI API key instructions for updating the OpenAI model estimated ongoing monthly infrastructure cost The infrastructure and accounts should ultimately be owned and controlled by me/my company, not permanently hosted inside the developer's personal accounts. Required Experience Strong preference will be given to applicants with demonstrated experience in several of the following: HIPAA-regulated healthcare software PHI handling Business Associate Agreements AWS/Azure/Google Cloud HIPAA architecture OpenAI API healthcare AI/LLM applications React/TypeScript API authentication IAM secure secret management secure logging SaaS security Stripe/Supabase familiarity healthcare cybersecurity HIPAA experience is much more important to me than fancy UI development. Important I am not asking a developer to certify that ED Scribe is legally "HIPAA compliant." I understand that compliance also involves contracts, policies, BAAs, organizational safeguards, risk assessments, and legal review. I am hiring you to build and document the technical architecture necessary to support HIPAA-regulated use and to identify remaining technical compliance issues. Screening Questions Please answer all of these when applying: Tell me about a healthcare application you have personally built or deployed that handled PHI. What was your role? Which cloud provider would you recommend for this project and why? Have you configured AWS, Azure, or Google Cloud specifically for HIPAA workloads and worked with BAAs? Have you integrated the OpenAI API or another major LLM into a healthcare application handling PHI? How would you prevent clinical request/response bodies from appearing in application or cloud-provider logs? How would you authenticate requests from the ED Scribe React application without exposing backend secrets? Would you maintain the existing localStorage patient architecture or recommend changing it? Why? Please briefly describe the architecture you would propose for this project. What would you expect the approximate ongoing infrastructure cost to be for a small initial user base? What do you estimate for project cost and completion time? Please begin your proposal with the words ED SCRIBE so I know you read the entire posting.
- Fixed price
- Expert
- Est. budget: $1,000.00
I’m looking for an experienced mobile developer or small team to build a cross-platform consumer social/matching application for iOS and Android. Product planning, user flows, initial designs and a detailed MVP specification have already been developed. The MVP will include: • User accounts/authentication • Profiles and photos • Guided onboarding • User discovery and matching • Mutual connections • Private realtime messaging • Push notifications • Privacy controls • Block/report functionality • Basic moderation/admin functionality • iOS and Android deployment I’m open to React Native or Flutter and would like recommendations regarding the backend architecture. I’m particularly interested in developers who have previously shipped consumer social, community, friendship, matching or marketplace applications. Please include 2–3 relevant mobile apps you have shipped, your specific role in building them, your recommended technology stack, and whether you personally will be developing the application. More detailed product specifications will be shared with selected candidates.
- Fixed price
- Intermediate
- Est. budget: $750.00
Need Re-architect a static interactive web tool so its content lives behind login on a server, not in the browser. Next.js + Supabase. US-Only. No Subcontracting.
- Fixed price
- Expert
- Est. budget: $5,000.00
We're looking for an experienced, reliable, and easy to work with Lovable.dev developer to help us build and scale a SaaS marketing platform for a niche market. This project could lead to other projects and even potentially full time work. The application is already underway in Lovable, and we're looking for someone who can review the existing project, recommend improvements, and become a long-term development partner. We're looking for experience with: Lovable.dev Supabase React / TypeScript SaaS architecture API integrations Authentication & user roles Building scalable applications Initially, we'd like you to: Review our existing Lovable project Evaluate the current architecture Recommend improvements and best practices Help prioritize the development roadmap Continue building features if we're a good fit The platform combines marketing automation, analytics, user dashboards, third-party integrations, and multi-tenant SaaS architecture. We're looking for someone who thinks like a software architect—not just someone who can complete coding tasks. If you qualify, please respond and share your portfolio for review. We look forward to talking if your the one!
- Fixed price
- Intermediate
- Est. budget: $10,000.00
We are building a Workspace, a business operating system, and need a Full-Stack SaaS Engineer to lay the foundation for our MVP. The project involves using Next.js, Supabase, Stripe, and Vercel to create a scalable and efficient system. The ideal candidate will have experience in SaaS development and be able to work independently to deliver high-quality results. The budget for this project is $10,000.
- Fixed price
- Expert
- Est. budget: $35,000.00
We are seeking a skilled developer to complete a nonprofit camp search platform utilizing Next.js and PostgreSQL. The project aims for a targeted launch date of November 1, 2026. Your role will involve developing features, optimizing performance, and ensuring an intuitive user experience. If you are passionate about creating impactful solutions for nonprofits and have expertise in modern web development technologies, we want to hear from you!
- Fixed price
- Intermediate
- Est. budget: $3,500.00
Immediate project: • Integrate a standalone HTML demo (a risk-indicators dashboard) into the main Next.js app • Restyle the integrated demo to visually match the existing landing page (typography, color, spacing, components) • Use static or mocked data for the dashboard views — this does not need to be wired to live Supabase data for this phase • UI consistency pass limited to the demo-facing pages a prospect would see in a live walkthrough (not the full app) • Deliver a clean, working build deployed on Vercel, ready for live demo use Timeline: Targeting completion within 2–3 weeks — this supports an active sales conversation, so reliability and responsiveness matter. Possible follow-on work (separate scope, hourly): • Wiring the dashboard demo to live Supabase data • Bug fixes and feature requests • Periodic maintenance, including an upcoming Supabase policy/security deadline • Ongoing point of contact for a non-technical founder