Direkt zum Hauptinhalt
Erweiterte Suche
Suchbegriffe
Inhaltstyp

Exakte Treffer
Schlagwort-Suchen
Datums Optionen
Aktualisiert nach
Aktualisiert vor
Erstellt nach
Erstellt vor

Suchergebnisse

468 Ergebnisse gesamt

Multilingual Support

Inventar und Handbücher Teedy Installation and Configuration

Teedy is available in different languages. Please help to make some commits to fix your own language. You can use the following tool to validate your modified json files which contain translatable strings: https://jsonlint.com Language file director...

Known Limitations

Inventar und Handbücher Teedy Installation and Configuration

General issues can be found in https://github.com/sismics/docs/issues If you delete a user, all his assigned documents get deleted without asking. The proper way to omit data loss, just deactivate the user and properly assign permissions to all tags, ...

Downloads

Inventar und Handbücher Teedy Installation and Configuration

Teedy consists of Java Server Application for Windows, MacOS or Linux Server and additionally: Android App Document Importer for Windows/Linux/MacOS You can find precompiled files in our Cloud or you compile it yourself from sources. There's al...

App for Android

Inventar und Handbücher Teedy Installation and Configuration

Sismics Docs is an easy to use, modern and nice DMS (document management system). Sismics Docs can be used on Android. But at the moment there is no downloadable App on Google PlayStore. In the offical git repository you can find the required sources to compil...

Backup and restore strategies

Inventar und Handbücher Teedy Installation and Configuration

Simple: Make backup of server app and data dir (H2 database) #!/bin/bash BUP_PATH="/backup/teedy/" mkdir -p $BUP_PATH rsync -lrptR /var/docs $BUP_PATH rsync -lrptR /opt/jetty-home-11.0.15/jetty-base/webapps $BUP_PATH cd $BUP_PATH FILENAME=$(date +%Y-%m-...

Gastzugang und spezielle Anpassungen (serverseitiger Code/Scripts)

Inventar und Handbücher Teedy API Scripts / database queries

Wir wollen unsere Inventarplattform so aufbereiten, dass sie auch für Gäste etwas zum Stöbern bietet und die Funktionen von Teedy als praktibale Open Source Software zeigt. Teedy hat einen Gastmodus, der von Haus aus leider neben der regulären Verwendung auch ...

Security

Inventar und Handbücher Teedy Installation and Configuration

General Tips run Teedy in Intranet use SSL adjust apache2 to hide /api/app information (json output which contains information like used version, user count, etc.) <Location "/api/app"> AllowOverride None Order deny,allow Deny from A...

Automatic Mail Importing (Inbox Scanning)

Inventar und Handbücher Teedy Installation and Configuration

This feature can be configured by environment variables! → Environment Configuration

Environment Configuration

Inventar und Handbücher Teedy Installation and Configuration

We use Fedora 38 Workstation, but the following steps should be similar on other systems. We also use a timer to delay the startup of jetty11 at bootup, because it sometimes struggles to perform well at the first start. vim /lib/systemd/system/jetty11.timer ...

Migration from H2 to PostgreSQL

Inventar und Handbücher Teedy Installation and Configuration

Note that the migration will make you loosing all the OCR extracted text content from files in your documents. If you want to have those OCR strings back you will need to run a re-indexing for all of them. Stop Teedy and make backup of recent H2 file structur...

Apache Reverse Proxy and Firewall

Inventar und Handbücher Teedy Installation and Configuration

Install apache2 sudo apt install apache2 Activate modules sudo a2enmod headers rewrite proxy proxy_html proxy_http ssl vhost_alias Apache Reverse Proxy Configuration sudo vim /etc/apache2/sites-available/dms.yourdomain.de_httpd.conf <VirtualHost YOURPUBL...

Teedy with PostgreSQL

Inventar und Handbücher Teedy Installation and Configuration

Teedy 1was tested sucessfully with PostgreSQL Version 16 and lower Install and configure PostgreSQL Teedy requires at least PSQL 9.4 (PostgreSQL94Dialect) PostgreSQL 10 and upwards are configured to deliver SSL by standard! You will need to configure it's S...

Manually fix broken document relations in database

Inventar und Handbücher Teedy File and Document Processing

Find documents which have relations to other documents which already were deleted Sometimes documents link to other documents but the links are invalid because the linked document is not available anymore. We can manually reset those links only because there ...

Icons in document titles

Inventar und Handbücher Teedy File and Document Processing

Inside Teedy we can use  funny icons, if we know the correct Unicode number. Copy + Paste. Just select the one's you need and paste them into Teedy. It works for title and description ☀ ☁ ☂ ☃ ☄ ★ ☆ ☇ ☈ ☉ ☊ ☋ ☌ ☍ ☎ ☏ ☐ ☑ ☒ ☓ ☔ ☕ ☖ ☗ ☘ ☙ ☚ ☛ ☜ ☝ ☞ ☟ ☠ ☡ ☢ ☣ ...

Fix Preview Bug

Inventar und Handbücher Teedy File and Document Processing

In case the file preview is erroneous/empty but the file can be processed and it can be downloaded by URL like https://dms.yourdomain.de/api/file/:FILE_ID/data: Root Cause: unkown. Seems to happen after migration from H2 to PostgreSQL Fixing proposal Remo...

Grafana Monitoring / Statistics

Inventar und Handbücher Teedy File and Document Processing

Description A Grafana monitoring dashboard for Teedy (Sismics Docs) statistics. Helpful to have a look over security things and the effort you put in your instance. Please check if this is okay for your own use - regarding privacy protection of the mates work...

Check index integrity / recompute quota

Inventar und Handbücher Teedy File and Document Processing

Sometimes the used space is wrong and may look like this: See also: https://github.com/sismics/docs/issues/345 Checks on file system cd /var/docs/ find ./ -type f -name '*' -exec du -ch {} + | grep total$ find ./ -type f -name '*_web' -exec du -ch {}...

Importer for Windows

Inventar und Handbücher Teedy File and Document Processing

The Bulk file importer tool is based on NodeJS Documentation also available under https://github.com/sismics/docs/tree/master/docs-importer Download the importer See Downloads for recent compiled setups. The importer can be also downloaded at Github. ...