A document storage system.
Find a file
2025-02-14 08:30:57 +01:00
app Removes unnecessary build directives. 2025-02-14 08:30:57 +01:00
buildSrc Initial commit 2025-01-29 19:01:36 +01:00
core Adds SQLDelight type converters. 2025-02-06 11:30:25 +01:00
gradle Initial commit 2025-01-29 19:01:36 +01:00
.gitignore Removes .kotlin/sessions. 2025-01-30 09:13:40 +01:00
gradle.properties Removes accidentially hardcoded jvm path. 2025-02-13 20:58:36 +01:00
gradlew Initial commit 2025-01-29 19:01:36 +01:00
gradlew.bat Initial commit 2025-01-29 19:01:36 +01:00
nixpacks.toml Removes unnecessary build directives. 2025-02-14 08:30:57 +01:00
README.md Adds more document creation groundwork. 2025-02-02 17:17:52 +01:00
settings.gradle.kts Initial commit 2025-01-29 19:01:36 +01:00

Filemure

Filemure is a simple document management application.

It supports:

  • uploading of files
  • tagging
  • search
  • download / export

TODO

  • create document from files in limbo
  • display documents list
  • display document details
  • display files
    • in limbo
    • in document
  • add files to documents
  • edit document data
  • parse document contents (for pdf, txt, ...)
  • guess target date from filenames
  • move documents to trash
  • delete documents + files
  • delete files in limbo

Build

This project uses Gradle. To build and run the application, use the Gradle tool window by clicking the Gradle icon in the right-hand toolbar, or run it directly from the terminal:

  • Run ./gradlew run to build and run the application.
  • Run ./gradlew build to only build the application.
  • Run ./gradlew check to run all checks, including tests.
  • Run ./gradlew clean to clean all build outputs.

Note the usage of the Gradle Wrapper (./gradlew). This is the suggested way to use Gradle in production projects.

Learn more about the Gradle Wrapper.

Learn more about Gradle tasks.

This project follows the suggested multi-module setup and consists of the app and utils subprojects. The shared build logic was extracted to a convention plugin located in buildSrc.

This project uses a version catalog (see gradle/libs.versions.toml) to declare and version dependencies and both a build cache and a configuration cache (see gradle.properties).