{"id":51222358,"url":"https://github.com/tempoxyz/frenchy","last_synced_at":"2026-06-28T08:03:50.639Z","repository":{"id":358496148,"uuid":"1239884519","full_name":"tempoxyz/frenchy","owner":"tempoxyz","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-17T16:13:38.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-17T18:37:56.870Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tempoxyz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-15T14:42:14.000Z","updated_at":"2026-05-17T16:13:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tempoxyz/frenchy","commit_stats":null,"previous_names":["tempoxyz/frenchy"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/tempoxyz/frenchy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tempoxyz%2Ffrenchy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tempoxyz%2Ffrenchy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tempoxyz%2Ffrenchy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tempoxyz%2Ffrenchy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tempoxyz","download_url":"https://codeload.github.com/tempoxyz/frenchy/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tempoxyz%2Ffrenchy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34881389,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-28T02:00:05.809Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-28T08:03:49.825Z","updated_at":"2026-06-28T08:03:50.630Z","avatar_url":"https://github.com/tempoxyz.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# frenchy\n\nA small Rust TUI for exploring OVHcloud dedicated servers from the US OVH API.\n\n## Setup\n\nOn first run, frenchy creates:\n\n```text\n~/.config/frenchy/config.toml\n```\n\nFill it with your OVH API application and consumer key:\n\n```toml\nonepassword_item = \"op://dev-eu/frenchy\"\n\napplication_key = \"...\"\napplication_secret = \"...\"\nconsumer_key = \"...\"\n\nendpoint = \"https://api.us.ovhcloud.com/1.0\"\nipmi_type = \"kvmipHtml5URL\"\nipmi_ttl = \"15\"\n```\n\nEnvironment variables can override the config file:\n\n```sh\nexport OVH_APPLICATION_KEY=...\nexport OVH_APPLICATION_SECRET=...\nexport OVH_CONSUMER_KEY=...\nexport OVH_ENDPOINT=https://api.us.ovhcloud.com/1.0\nexport OVH_IPMI_TYPE=kvmipHtml5URL\nexport OVH_IPMI_TTL=15\n```\n\nIf a required value is missing, frenchy reads it from the configured 1Password\nitem with `op read`. The default item is `op://dev-eu/frenchy`; override it with\n`FRENCHY_1PASSWORD_ITEM` or `onepassword_item`, or set `onepassword_item = \"\"`\nto only use local config and environment variables. Individual config values and\nenvironment variables can also be set directly to `op://` references.\n\nThe consumer key needs read access to dedicated server routes and write access\nfor IPMI session creation and restarts:\n\nUse this link to create a US OVHcloud API token with the required rights:\n\n```text\nhttps://api.us.ovhcloud.com/createToken/index.cgi?GET=%2Fdedicated%2Fserver\u0026GET=%2Fdedicated%2Fserver%2F%2A\u0026GET=%2Fdedicated%2Fserver%2F%2A%2Fspecifications%2Fhardware\u0026GET=%2Fdedicated%2Fserver%2F%2A%2Fspecifications%2Fnetwork\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FnetworkInterfaceController\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FnetworkInterfaceController%2F%2A\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualNetworkInterface\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualNetworkInterface%2F%2A\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualMac\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualMac%2F%2A\u0026POST=%2Fdedicated%2Fserver%2F%2A%2Ffeatures%2Fipmi%2Faccess\u0026POST=%2Fdedicated%2Fserver%2F%2A%2Freboot\n```\n\nIf OVH returns `Invalid account/password`, make sure you are using the API\nregion that owns the account. For OVH US sub-users, use:\n\n```text\nhttps://us.ovhcloud.com/auth/api/createToken?GET=%2Fdedicated%2Fserver\u0026GET=%2Fdedicated%2Fserver%2F%2A\u0026GET=%2Fdedicated%2Fserver%2F%2A%2Fspecifications%2Fhardware\u0026GET=%2Fdedicated%2Fserver%2F%2A%2Fspecifications%2Fnetwork\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FnetworkInterfaceController\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FnetworkInterfaceController%2F%2A\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualNetworkInterface\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualNetworkInterface%2F%2A\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualMac\u0026GET=%2Fdedicated%2Fserver%2F%2A%2FvirtualMac%2F%2A\u0026POST=%2Fdedicated%2Fserver%2F%2A%2Ffeatures%2Fipmi%2Faccess\u0026POST=%2Fdedicated%2Fserver%2F%2A%2Freboot\n```\n\n```text\nGET  /dedicated/server\nGET  /dedicated/server/*\nGET  /dedicated/server/*/specifications/hardware\nGET  /dedicated/server/*/specifications/network\nGET  /dedicated/server/*/networkInterfaceController\nGET  /dedicated/server/*/networkInterfaceController/*\nGET  /dedicated/server/*/virtualNetworkInterface\nGET  /dedicated/server/*/virtualNetworkInterface/*\nGET  /dedicated/server/*/virtualMac\nGET  /dedicated/server/*/virtualMac/*\nPOST /dedicated/server/*/features/ipmi/access\nPOST /dedicated/server/*/reboot\n```\n\nYou can also print this from the binary:\n\n```sh\ncargo run -- credential-help\n```\n\n## Run\n\n```sh\ncargo run\n```\n\nThe server list includes an at-a-glance hardware summary. Selecting a server\nshows CPU topology, memory, disk groups, RAID details, motherboard, boot mode,\nserver id, rack, datacenter, region/availability zone, bandwidth, routing,\nvRack/vMAC support, OLA, physical network controllers with public/private MACs,\nand virtual network interfaces with their MAC addresses when OVH returns them.\n\n## Keys\n\n```text\n/             filter by inventory fields\nenter/esc     finish filtering\nbackspace     edit filter\nctrl-u        clear filter while filtering\nr             refresh servers\nj/k or arrows move selection\nctrl-d/ctrl-u move selection by half a page\ngg/G          jump to first/last server\ntab/enter     switch focus\npgup/pgdn     scroll details\ni/K           request HTML5 KVM/IPMI access and open the returned URL\nR             press twice to restart the selected server\nq/esc/ctrl-c  quit\n```\n\nThe KVM action calls OVH's IPMI access API:\n\n```text\nPOST /dedicated/server/{serviceName}/features/ipmi/access\nGET  /dedicated/server/{serviceName}/features/ipmi/access?type=kvmipHtml5URL\n```\n\nand opens the returned HTML5 KVM URL with the system browser.\n\nThe restart action calls:\n\n```text\nPOST /dedicated/server/{serviceName}/reboot\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftempoxyz%2Ffrenchy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftempoxyz%2Ffrenchy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftempoxyz%2Ffrenchy/lists"}