crustpass

Crates.iocrustpass
lib.rscrustpass
version
sourcesrc
created_at2025-02-19 23:04:30.531182+00
updated_at2025-02-19 23:04:30.531182+00
descriptionManage seed data for my home lab.
homepagehttps://github.com/arpanrec/crustpass/blob/main/README.md
repositoryhttps://github.com/arpanrec/crustpass.git
max_upload_size
id1561984
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`
size0
Arpan Mandal (arpanrec)

documentation

https://github.com/arpanrec/crustpass/blob/main/README.md

README

crustpass

Manage seed data for my home lab.

Configuration

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.

Configuration: Server

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"
    }
}

Configuration: Physical

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"
    }
    

Configuration: Authentication

Authentication layer for the API.

{
    "authentication_type": "Type of authentication",
    "authentication_details": "Details for the authentication"
}
  • admin_api_key

    {
        "api_key": "Admin API key"
    }
    
Commit count: 57

cargo fmt