Skip to content

pmspaceai7-wq/space-sign

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


SPACE-SIGN Banner


SPACE-SIGN

The Open, Secure, and Self-Hostable e-Signature Platform

WebsiteRequest a DemoPricingIssues

🕋️ About SPACE-SIGN

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. SPACE-SIGN aims to be the world's most trusted document-signing tool. This trust is built by empowering you to self-host SPACE-SIGN and review how it works under the hood.

Join us in creating the next generation of open trust infrastructure.


✨ Features

  • 🕊️ Create and manage secure digital signatures
  • 📄 Add multiple signers and signature fields
  • 🔐 Self-hosted deployment for full data control
  • 🧾 Audit trail and document verification
  • 💼 API integration for automated workflows
  • 💳 Subscription & payment support
  • 🤖 Developer-friendly architecture (Next.js + Node.js)
  • 🎨 Beautiful, modern dashboard design

🤠 Tech Stack


🧾 Licensing & attribution

This project is licensed under the GNU Affero General Public License v3.0 only (AGPL‑3.0‑only). See LICENSE for the full text.

This repository is a fork derived from the Documenso Community Edition: https://github.com/documenso/documenso

Notes on Enterprise features

  • No proprietary Enterprise Edition (EE) code is included. The directory packages/ee/ contains only non‑functional, AGPL‑licensed stubs to satisfy imports used by the Community Edition. Billing and SSO features are disabled by design.

AGPL network use (Section 13) If you interact with this software over a network, you may obtain the complete Corresponding Source at: https://github.com/pmspaceai7-wq/space-sign

Trademarks “Documenso” and any related marks are trademarks of their respective owners. Use does not imply endorsement.


💻 Local Development

Requirements

To run SPACE-SIGN locally, ensure you have:

  • Node.js (v22+)
  • PostgreSQL
  • Docker (optional)

Developer Quickstart

Note: This is a quickstart for developers. It assumes that you have both Docker and Docker Compose installed.

  1. Fork the repository: https://github.com/pmspaceai7-wq/space-sign

  2. Clone it:

    git clone https://github.com/<your-username>/space-sign
    cd space-sign
  3. Set up environment variables:

    cp .env.example .env
  4. Run:

    npm run dx
    • This spins up a PostgreSQL database and mailserver in Docker.
  5. Start development:

    npm run dev
  6. For a quicker setup:

    npm run d

Access Points for Your Application


🧱 Developer Setup (Manual)

  1. Install dependencies:

    npm install
  2. Create .env:

    cp .env.example .env
  3. Configure environment variables:

    NEXTAUTH_SECRET=
    NEXT_PUBLIC_WEBAPP_URL=
    NEXT_PRIVATE_DATABASE_URL=
    NEXT_PRIVATE_DIRECT_DATABASE_URL=
    NEXT_PRIVATE_SMTP_FROM_NAME=
    NEXT_PRIVATE_SMTP_FROM_ADDRESS=
    
  4. Create database schema:

    npm run prisma:migrate-dev
  5. Start app:

    npm run dev
  6. Register a new user at http://localhost:9090/signup


☁️ Self Hosting

We support a variety of deployment methods, and are actively working on adding more. Stay tuned for updates!

Please note that the below deployment methods are for v0.9, we will update these to v1.0 once released.

Fetch, Configure, and Build

git clone https://github.com/pmspaceai7-wq/space-sign.git
cd space-sign
cp .env.example .env

Set the following environment variables:

NEXTAUTH_SECRET
NEXT_PUBLIC_WEBAPP_URL
NEXT_PRIVATE_DATABASE_URL
NEXT_PRIVATE_DIRECT_DATABASE_URL
NEXT_PRIVATE_SMTP_FROM_NAME
NEXT_PRIVATE_SMTP_FROM_ADDRESS

If you are using a reverse proxy in front of SPACE-SIGN, don't forget to provide the public URL for the NEXT_PUBLIC_WEBAPP_URL variable!

Install dependencies and build:

npm install
npm run build
npm run prisma:migrate-deploy

Start the application:

cd apps/remix
npm run start

The server runs on localhost:3000. Use a reverse proxy for frontend and SSL termination.

To run on another port:

next -p <ANY PORT>

Run as a Service

You can use a systemd service to run SPACE-SIGN. Example:

[Unit]
Description=spacesign
After=network.target

[Service]
Environment=PATH=/path/to/your/node/binaries
Type=simple
User=www-data
WorkingDirectory=/var/www/spacesign/apps/remix
ExecStart=/usr/bin/next start -p 9090
TimeoutSec=15
Restart=always

[Install]
WantedBy=multi-user.target

📸 Screenshot

SPACE-SIGN Dashboard

SPACE-SIGN Screenshot


Troubleshooting

Emails not sending?

Local setup uses Inbucket to catch emails:

IPv6 Support

Run with:

docker run -it spacesign:latest npm run start -- -H ::

💬 Contact & Links


⚖️ License & Attribution

SPACE-SIGN is a modified version of Documenso, licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).

This project includes modifications and enhancements by SPACE-SIGN. Source code is made available under the same AGPL-3.0 license.


© 2025 Space-SIGN — All Rights Reserved.

🚀 Empowering Secure Digital Signatures with SPACE-SIGN

About

The Open Source DocuSign Alternative.

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.4%
  • Other 0.6%