The Open Source DocuSign Alternative.
Learn more »
Discord
·
Website
·
Issues
·
Roadmap
·
Upcoming Launches
🦺 Documenso 1.0 is deployed to our Staging Environment.
The code can be found on the feat/refresh branch.
The new version will be released after the current testing phase.
Join us in testing Documenso 1.0 during MALFUNCTION MANIA
Signing documents digitally should be fast and easy and should be the best practice for every document signed worldwide.
This is technically quite easy today, but it also introduces a new party to every signature: The signing tool providers. While this is not a problem in itself, it should make us think about how we want these providers of trust to work.
Documenso aims to be the world's most trusted document-signing tool. This trust is built by empowering you to self-host Documenso and review how it works under the hood.
Join us in creating the next generation of open trust infrastructure.
We're currently working on a redesign of the application, including a revamp of the codebase so Documenso can be more intuitive to use and robust to develop upon.
- Check out the first source code release in this repository and test it
- Tell us what you think in the Discussions
- Join the Discord server for any questions and getting to know to other community members
- ⭐ the repository to help us raise awareness
- Spread the word on Twitter that Documenso is working towards a more open signing tool
- Fix or create issues, that are needed for the first production release
- To contribute, please see our contribution guide.
Contact us if you are interested in our Enterprise plan for large organizations that need extra flexibility and control.
- Typescript - Language
- Next.js - Framework
- Prisma - ORM
- Tailwind - CSS
- shadcn/ui - Component Library
- NextAuth.js - Authentication
- react-email - Email Templates
- tRPC - API
- Node SignPDF - Digital Signature
- React-PDF - Viewing PDFs
- PDF-Lib - PDF manipulation
- Stripe - Payments
- Vercel - Hosting
To run Documenso locally you will need
- Node.js
- Postgres SQL Database
- Docker (optional)
Note: This is a quickstart for developers. It assumes that you have both docker and docker-compose installed on your machine.
Want to get up and running quickly? Follow these steps:
- Clone the repository it to your local device.
git clone https://github.com/documenso/documenso
-
Set up your
.env
file using the recommendations in the.env.example
file. Alternatively just runcp .env.example .env
to get started with our handpicked defaults. -
Run
npm run dx
in the root directory- This will spin up a postgres database and inbucket mailserver in a docker container.
-
Run
npm run dev
in the root directory -
Want it even faster? Just use
npm run d
-
App - https://localhost:3000
-
Incoming Mail Access - https://localhost:9000
-
Database Connection Details
- Port: 54320
- Connection: Use your favorite database client to connect using the provided port.
Follow these steps to setup documenso on you local machine:
- Clone the repository it to your local device.
git clone https://github.com/documenso/documenso
-
Run
npm i
in root directory -
Create your
.env
from the.env.example
. You can usecp .env.example .env
to get started with our handpicked defaults. -
Set the following environement variables.
- NEXTAUTH_URL
- NEXTAUTH_SECRET
- NEXT_PUBLIC_WEBAPP_URL
- NEXT_PUBLIC_MARKETING_URL
- NEXT_PRIVATE_DATABASE_URL
- NEXT_PRIVATE_DIRECT_DATABASE_URL
- NEXT_PRIVATE_SMTP_FROM_NAME
- NEXT_PRIVATE_SMTP_FROM_ADDRESS
-
Create the database schema by running
npm run prisma:migrate-dev
-
Run
npm run dev
root directory to start -
Register a new user at https://localhost:3000/signup
- Optional: Seed the database using
npm run prisma:seed -w @documenso/prisma
to create a test user and document - Optional: Create your own signing certificate
- To generate your own using these steps and a Linux Terminal or Windows Subsystem for Linux (WSL) see Create your own signing certificate.
- Click below to launch a ready-to-use Gitpod workspace in your browser.
We support DevContainers for VSCode. Click here to get started.
🚧 Docker containers and images are current in progress. We are actively working on bringing a simple docker build and publish pipeline for Documenso.
We support a variety of deployment methods, and are actively working on adding more. Stay tuned for updates!
Please note the below deployment methods are for v0.9, we will update these to v1.0 once it has been released.
When using the developer quickstart an Inbucket server will be spun up in a docker container that will store all outgoing email locally for you to view.
The Web UI can be found at https://localhost:9000 while the SMTP port will be on localhost:2500.
In case you are deploying to a cluster that uses only IPv6. You can use a custom command to pass a parameter to the Next.js start command
For local docker run
docker run -it documenso:latest npm run start -- -H ::
For k8s or docker-compose
containers:
- name: documenso
image: documenso:latest
imagePullPolicy: IfNotPresent
command:
- npm
args:
- run
- start
- --
- -H
- '::'
Wrap your package script with the with:env
script like such:
npm run with:env -- npm run myscript
The same can be done when using npx
for one of bin scripts:
npm run with:env -- npx myscript
This will load environment variables from your .env
and .env.local
files.