Crates.io | crustpass |
lib.rs | crustpass |
version | |
source | src |
created_at | 2025-02-19 23:04:30.531182+00 |
updated_at | 2025-02-19 23:04:30.531182+00 |
description | Manage seed data for my home lab. |
homepage | https://github.com/arpanrec/crustpass/blob/main/README.md |
repository | https://github.com/arpanrec/crustpass.git |
max_upload_size | |
id | 1561984 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Manage seed data for my home lab.
CRUSTPASS_CONFIGURATION_FILE
- Path to the settings file. Default: /etc/crustpass/configuration.json
CRUSTPASS_CONFIGURATION_JSON
- JSON string of settings. Default: null
Priorities: CRUSTPASS_CONFIGURATION_FILE
> CRUSTPASS_CONFIGURATION_JSON
{
"server" : "See Server",
"physical": "See Physical",
"authentication": "See Authentication"
}
RUST_LOG=crustpass=debug
- Enable debug logging.
Server Settings. tls
is optional.
{
"socket_addr": "Listen address for the server, Example: `127.0.0.1:8080`",
"tls": {
"cert": "PEM encoded certificate",
"key": "PEM encoded private key"
}
}
Persistence layer for the seed data.
{
"physical_type": "Type of physical storage",
"physical_details": "Details for the physical storage"
}
libsql
{
"db_url": "Database connection string",
"auth_token": "Authentication token for the database",
"table_name": "Table name for the seed data"
}
Authentication layer for the API.
{
"authentication_type": "Type of authentication",
"authentication_details": "Details for the authentication"
}
admin_api_key
{
"api_key": "Admin API key"
}