A mirror at the moment. Might get a fork in the future
Go to file
Benjamin Gamard b59ecf0370
Create CODE_OF_CONDUCT.md
2018-03-02 22:25:48 +01:00
docs-android new android icon 2017-12-21 12:51:47 +01:00
docs-core ffmpeg less chatty 2018-03-02 20:36:39 +01:00
docs-importer v1.5 2018-03-01 14:18:23 +01:00
docs-stress next dev iteration 2018-03-01 14:34:09 +01:00
docs-web Closes #140: video file support 2018-03-02 19:05:20 +01:00
docs-web-common next dev iteration 2018-03-01 14:34:09 +01:00
.gitattributes Initial commit 2013-07-27 18:33:20 +02:00
.gitignore file importer 2018-03-01 12:28:29 +01:00
.travis.yml fix travis build 2018-03-02 19:28:59 +01:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-03-02 22:25:48 +01:00
COPYING License 2013-08-18 16:23:15 +02:00
Dockerfile fix docker image 2018-03-02 20:13:55 +01:00
README.md Closes #140: video file support 2018-03-02 19:05:20 +01:00
docs.xml hook me 2015-03-23 17:30:15 +01:00
pom.xml next dev iteration 2018-03-01 14:34:09 +01:00

README.md

Sismics Docs

Twitter: @sismicsdocs License: GPL v2 Build Status

Docs is an open source, lightweight document management system for individuals and businesses.


We just launched a Cloud version of Sismics Docs! Head to sismicsdocs.com for more informations


New!

Demo

A demo is available at demo.sismicsdocs.com

  • Guest login is enabled with read access on all documents
  • "admin" login with "admin" password
  • "demo" login with "password" password

Features

  • Responsive user interface
  • Optical character recognition
  • Support image, PDF, ODT and DOCX files
  • Video file support New!
  • Flexible search engine
  • Full text search in all supported files
  • All Dublin Core metadata
  • Workflow system New!
  • 256-bit AES encryption of stored files
  • Tag system with nesting
  • Import document from email (EML format) New!
  • Automatic inbox scanning and importing New!
  • User/group permission system
  • 2-factor authentication
  • Hierarchical groups
  • Audit log
  • Comments
  • Storage quota per user
  • Document sharing by URL
  • RESTful Web API
  • Fully featured Android client
  • Bulk files importer (single or scan mode) New!
  • Tested to 100k documents

Download

The latest release is downloadable here: https://github.com/sismics/docs/releases in WAR format. You will need a Java webapp server to run it, like Jetty or Tomcat. The default admin password is "admin". Don't forget to change it before going to production.

Install with Docker

From a Docker host, run this command to download and install Sismics Docs. The server will run on http://[your-docker-host-ip]:8100. The default admin password is "admin". Don't forget to change it before going to production.

docker run --rm --name sismics_docs_latest -d -p 8100:8080 -v sismics_docs_latest:/data sismics/docs:latest

How to build Docs from the sources

Prerequisites: JDK 7 with JCE, Maven 3, Tesseract 3.02

Docs is organized in several Maven modules:

  • docs-core
  • docs-web
  • docs-web-common

First off, clone the repository: git clone git://github.com/sismics/docs.git or download the sources from GitHub.

Launch the build

From the root directory:

mvn clean -DskipTests install

Run a stand-alone version

From the docs-web directory:

mvn jetty:run

Build a .war to deploy to your servlet container

From the docs-web directory:

mvn -Pprod -DskipTests clean install

You will get your deployable WAR in the docs-web/target directory.

License

Docs is released under the terms of the GPL license. See COPYING for more information or see http://opensource.org/licenses/GPL-2.0.