Written in Rust, this program collects file metadata and stores it in a PostgreSQL database. Some things it gathers include:
In addition to collecting data about files, the program assists in indexing files with tools such as file tagging, search, and more. Development on these features is underway... stay tuned!
To run the project, you will need a PostgreSQL database setup and configure the
.env
file in this project to point to your database. See Configuration section
below.
Next, you will need to use diesel to run the database migrations necessary to create tables needed for the project.
diesel migration run
Next, set any remaining configuration values as detailed in Configuration.
Once the prerequisites are met, you may run or build the project with:
```
cargo run -- --help
cargo run
cargo build --release
```
See Arguments section for details on the arguments this program accepts.
Note: if running on Ubuntu, you may need to install libpq-dev in order for Diesel to compile when cargo builds.
sudo apt install libpq-dev
This app takes a minimum of one command line argument before it will perform any action beyond simply terminating. This section is divided into commands subcommands.
You can specify one of several actions to use via the -a
or --action
command
flags followed by an action name. For now configuration beyond selecting an
action to perform is handled in the .env
file, see Configuration. Valid
actions are:
Examples:
```
cargo run -- --action hash ```
To create a tag without applying it to a listing, eg "puppy" use
cargo run -- new-tag puppy
To aid in searching for any given file, you can apply tags to a listing id which
in the future will be used as a search mechanism. For example, you could search
for all files containing the tag vacation
and viola :violin:, all files with
the tag applied are returned!
To tag a listing, whose id is 56982fc3-091a-489c-bd6c-c7f916965d4b, with tags
of summer
, beach
, and vacation
:
cargo run -- tag 56982fc3-091a-489c-bd6c-c7f916965d4b -- summer beach vacation
To remove a single tag applied to a listing, use the UUID in the id column of
listing_tags
to remove the applied tag association.
cargo run -- delete-tag-listing 56982fc3-091a-489c-bd6c-c7f916965d4b
Deleting a tag will remove it from the tags
table and all entries of where the
tag was in use on the listing_tags
table. Proceed with caution! To make this a
little harder to accidentally run, for now tags must be deleted with their UUID
in the id column within the tags
table.
cargo run -- delete-tag 56982fc3-091a-489c-bd6c-c7f916965d4b
.env
configuration setting include:
License is MIT. See LICENSE file.