GithubHelp home page GithubHelp logo

ml-sketch / documenso Goto Github PK

View Code? Open in Web Editor NEW

This project forked from documenso/documenso

0.0 0.0 0.0 20.19 MB

Document Signing as it should be - open and shaped by its community.

Home Page: https://documenso.com

License: GNU Affero General Public License v3.0

Shell 0.33% JavaScript 4.77% TypeScript 93.85% CSS 0.32% Dockerfile 0.73%

documenso's Introduction

We are LIVE on Product Hunt. Come say hi..

Documenso - The Open Source DocuSign Alternative. | Product Hunt

Documenso Logo

Open Source Signing Infrastructure

The DocuSign Open Source Alternative.
Learn more »

Slack · Website · Issues · Roadmap

Join Documenso on Slack Github Stars License Commits-per-month

Documenso 0.9 - Developer Preview

Note This project is currently under community review and will publish it's first production release soon™.

About this project

Signing documents digitally is fast, easy and should be 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.

Community and Next Steps 🎯

The current project goal is to release a production ready version for self-hosting as soon as possible. If you want to help making that happen you can:

  • Check out the first source code release in this repository and test it
  • Tell us what you think in the current Discussions
  • Join the Slack Channel 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

Contributing

Tech

Documenso is built using awesome open source tech including:

Getting Started

Requirements

To run Documenso locally you need

Developer Quickstart

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.

  • Run npm run dx in the root directory

    • This will spin up a postgres database and inbucket mail server in docker containers.
  • Run npm run dev in the root directory

  • Want it even faster? Just use

    npm run d

That's it! You should now be able to access the app at http://localhost:3000

Incoming mail will be available at http://localhost:9000

Your database will also be available on port 54320. You can connect to it using your favorite database client.

Developer Setup

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
  • Rename .env.example to .env
  • Set DATABASE_URL value in .env file
    • You can use the provided test database url (may be wiped at any point)
    • Or setup a local postgres sql instance (recommended)
  • Create the database scheme by running db-migrate:dev
  • Setup your mail provider
    • Set SENDGRID_API_KEY value in .env file
    • You need a SendGrid account, which you can create here.
    • Documenso uses Nodemailer so you can easily use your own SMTP server by setting the SMTP_* variables in your .env
  • Run npm run dev root directory to start
  • Register a new user at http://localhost:3000/signup

  • Optional: Seed the database using npm run db-seed to create a test user and document

  • Optional: Upload and sign apps/web/ressources/example.pdf manually to test your setup

  • Optional: Create your own signing certificate

    • A demo certificate is provided in /app/web/ressources/certificate.p12
    • To generate your own using these steps and a Linux Terminal or Windows Subsystem for Linux (WSL) see Create your own signing certificate.

Updating

  • If you pull the newest version from main, using git pull, it may be necessary to regenerate your database client
  • You can do this by running the generate command in /packages/prisma:
    npx prisma generate
  • This is not necessary on first clone.

Creating your own signing certificate

For the digital signature of your documents you need a signing certificate in .p12 format (public and private key). You can buy one (not recommended for dev) or use the steps to create a self-signed one:

  1. Generate a private key using the OpenSSL command. You can run the following command to generate a 2048-bit RSA key:
    openssl genrsa -out private.key 2048

  2. Generate a self-signed certificate using the private key. You can run the following command to generate a self-signed certificate:
    openssl req -new -x509 -key private.key -out certificate.crt -days 365
    This will prompt you to enter some information, such as the Common Name (CN) for the certificate. Make sure you enter the correct information. The -days parameter sets the number of days for which the certificate is valid.

  3. Combine the private key and the self-signed certificate to create the p12 certificate. You can run the following command to do this:
    openssl pkcs12 -export -out certificate.p12 -inkey private.key -in certificate.crt

  4. You will be prompted to enter a password for the p12 file. Choose a strong password and remember it, as you will need it to use the certificate (can be empty for dev certificates)

  5. Place the certificate /apps/web/ressource/certificate.p12

Docker

We are still working on the publishing of docker images, in the meantime you can follow the steps below to create a production ready docker image.

Want to create a production ready docker image? Follow these steps:

  • Run ./docker/build.sh in the root directory.
  • Publish the image to your docker registry of choice.

Deploying - Coming Soon™

  • Docker support
  • One-Click-Deploy on Render.com Deploy

documenso's People

Contributors

abielzulio avatar eltimuro avatar ephraimduncan avatar esther-lita avatar mikeriss avatar mythie avatar piyushkrmaurya avatar raysubham avatar sauravl3010 avatar zahid47 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.