A mirror at the moment. Might get a fork in the future
Go to file
Jean-Marc Tremeaux c89b28d158 Upgrade to JDK 11.0.8
(cherry picked from commit 205f92d093)
2020-09-24 13:24:11 +02:00
docs-android sismics docs -> teedy 2019-02-12 13:57:54 +01:00
docs-core Merge remote-tracking branch 'origin/master' 2019-05-07 14:38:15 +02:00
docs-importer sismics docs -> teedy 2019-02-12 13:57:54 +01:00
docs-stress sismics docs -> teedy 2019-02-12 13:57:54 +01:00
docs-web Closes #309: store onboarding status server side 2019-05-06 18:12:44 +02:00
docs-web-common #254: display documents in grid + concept of main file 2018-11-01 16:27:35 +01:00
.gitattributes Initial commit 2013-07-27 18:33:20 +02:00
.gitignore Closes #188: Quiet mode for the file importer 2018-03-05 14:36:30 +01:00
.travis.yml Turkish Language Support (#304) 2019-03-07 20:34:02 +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 Upgrade to JDK 11.0.8 2020-09-24 13:24:11 +02:00
docs.xml hook me 2015-03-23 17:30:15 +01:00
pom.xml Fix for https://bugs.openjdk.java.net/browse/JDK-8216039 2019-05-07 14:38:05 +02:00
README.md sismics docs -> teedy 2019-02-12 13:57:54 +01:00

Teedy

Twitter: @teedyio License: GPL v2 Build Status

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

Discuss it on Product Hunt 🦄


Sismics Docs is now called Teedy! You can still find our cloud and support offer on teedy.io


New!

Demo

A demo is available at demo.teedy.io

  • 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, DOCX, PPTX files
  • Video file support
  • Flexible search engine with suggestions and highlighting
  • Full text search in all supported files
  • All Dublin Core metadata
  • Workflow system New!
  • 256-bit AES encryption of stored files
  • File versioning New!
  • Tag system with nesting
  • Import document from email (EML format)
  • Automatic inbox scanning and importing
  • User/group permission system
  • 2-factor authentication
  • Hierarchical groups
  • Audit log
  • Comments
  • Storage quota per user
  • Document sharing by URL
  • RESTful Web API
  • Webhooks to trigger external service
  • Fully featured Android client
  • Bulk files importer (single or scan mode)
  • Tested to one million documents

Install with Docker

From a Docker host, run this command to download and install Teedy. 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 teedy_latest -d -e DOCS_BASE_URL='http://[your-docker-host-ip]:8100' -p 8100:8080 -v teedy_latest:/data sismics/docs:latest

Note: You will need to change [your-docker-host-ip] with the IP address or FQDN of your docker host e.g.

FQDN: http://docs.mycompany.com
IP: http://192.168.100.10

Manual installation

Requirements

Download

The latest release is downloadable here: https://github.com/sismics/docs/releases in WAR format. The default admin password is "admin". Don't forget to change it before going to production.

How to build Teedy from the sources

Prerequisites: JDK 8 with JCE, Maven 3, Tesseract 3 or 4

Teedy 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.

Contributing

All contributions are more than welcomed. Contributions may close an issue, fix a bug (reported or not reported), improve the existing code, add new feature, and so on.

The master branch is the default and base branch for the project. It is used for development and all Pull Requests should go there.

Community

Get updates on Teedy's development and chat with the project maintainers:

License

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