EveryDocs alternatives and similar software solutions
Based on the "Document Management" category.
Alternatively, view EveryDocs alternatives based on common mentions on social networks and blogs.
-
Paperless-ng
DISCONTINUED. A supercharged version of paperless: scan, index and archive all your physical documents -
Teedy
Lightweight document management system packed with all the features you can expect from big expensive solutions -
Docspell
Assist in organizing your piles of documents, resulting from scanners, e-mails and other sources with miminal effort. -
paper{s}pace
a small web application to manage all your offline documents. Provides a searchable storage for your documents and reminds you of upcoming tasks.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of EveryDocs or a related project?
README
EveryDocs Core
EveryDocs Core is the server-side part of EveryDocs. This project contains a web interface. All in all, EveryDocs is a simple Document Management System (DMS) for private use. It contains basic functionality to organize your documents digitally.
Features
- Uploading PDF documents with a title, description and the date the document was created
- Organizing documents in folders and subfolders
- Adding people and processing states to documents
- Extracting the content from the PDF file for full-text search
- Searching all documents by title, description or content of the document
- Creating new accounts (be aware that at the current moment everybody who knows the URL can create new accounts)
- Authentication via JsonWebToken
- REST-API for all CRUD operation for documents, folders, persons and processing states
- Mobile-friendly web UI
Screenshots of the web interface
[EveryDocs Web - Dashboard](images/dashboard.png) [EveryDocs Web - Uploading new document](images/new-document.png)
Installation
Docker (recommended)
Start the container and make the API accessible on port 8080
by running the following commands. Of course, you can change the port in the last command.
Also make sure to check the folder that is mounted into the container. In this case, the uploaded files are stored in /data/everydocs
on the host.
docker run -p 127.0.0.1:8080:5678/tcp -e SECRET_KEY_BASE="$(openssl rand -hex 64)" -v /data/everydocs:/var/everydocs-files jonashellmann/everydocs
You can configure the application by using the following environment variables:
EVERYDOCS_DB_ADAPTER
: The database adapter (default:mysql2
)EVERYDOCS_DB_NAME
: The name of the database (default:everydocs
)EVERYDOCS_DB_USER
: The user for the database connection (default:everydocs
)EVERYDOCS_DB_PASSWORD
: The password for the database connection (no default)EVERYDOCS_DB_HOST
: The host of the database (default:localhost
)EVERYDOCS_DB_PORT
: The port of the database (default:3306
)
You might want to include this container in a network so it has access to a database container. Also there are ways to connect to a database that runs on the host (e.g. see Stackoverflow).
Manual Installation (not recommended)
- Make sure you have Ruby installed. For an installation guide, check here: Ruby installation guide
- If you haven't installed the Rails Gem, you can run the following command:
gem install rails
- Download the newest release and unzip it in a location of your own choice.
- Configure your database connection by setting the following environment variables:
EVERYDOCS_DB_ADAPTER
(e.g. mysql2),EVERYDOCS_DB_NAME
,EVERYDOCS_DB_USER
,EVERYDOCS_DB_PASSWORD
,EVERYDOCS_DB_HOST
,EVERYDOCS_DB_PORT
. You can do so by editing thestart-app.sh
script. - Configure the folder where documents are stored in config/settings.yml.
The default location is
/var/everydocs-files/
. - Install required dependencies by running:
bundle install
- You might want to change the port of the application in
start-app.sh
andstop-app.sh
. - Setup your database by running:
rake db:migrate RAILS_ENV=production
. If there is an error, you might need to execute the following command, to set an encryption key:EDITOR="mate --wait" bin/rails credentials:edit
- Make sure that the environment variable
SECRET_KEY_BASE
has a value. If not, you can generate a key by runningrake secret
and set it by editing thestart-app.sh
script. In case your not using production as your environment, the environment variableSECRET_KEY_BASE_DEV
orSECRET_KEY_BASE_TEST
needs to be set. - Start your Rails server:
./start-app.sh
- Access the application on http://localhost:5678 or configure any kind of proxy forwarding in your webserver.
- If you wish to use this application in your web browser, consider to install EveryDocs Web!
- Stop the application:
./stop-app.sh
Backup
To backup your application, you can simply use the backup functionality of your database. For example, a MySQL/MariaDB DBMS may use mysqldump.
Additionally you have to backup the place where the documents are stored. You can configure this in config/settings.yml. To restore, just put the documents back in that location.
Routes Documentation
To learn about the routes the API offers, run the following command: rake routes
*Note that all licence references and agreements mentioned in the EveryDocs README section above
are relevant to that project's source code only.