{"id":44384107,"url":"https://github.com/spectra010s/portal","last_synced_at":"2026-04-01T22:47:19.212Z","repository":{"id":327866454,"uuid":"1086670875","full_name":"Spectra010s/portal","owner":"Spectra010s","description":"Portal is a personal file-receiving app that allows users to securely upload and download files via HTTPS. Each installation is private and configurable, enabling users to share and receive files easily from multiple devices.","archived":false,"fork":false,"pushed_at":"2026-02-12T01:55:26.000Z","size":155,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-12T07:30:32.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://portal-wheat-nu.vercel.app","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Spectra010s.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-10-30T18:27:26.000Z","updated_at":"2026-02-12T06:10:43.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Spectra010s/portal","commit_stats":null,"previous_names":["spectra010s/portal"],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/Spectra010s/portal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spectra010s%2Fportal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spectra010s%2Fportal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spectra010s%2Fportal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spectra010s%2Fportal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Spectra010s","download_url":"https://codeload.github.com/Spectra010s/portal/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spectra010s%2Fportal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29597854,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T22:25:43.180Z","status":"ssl_error","status_checked_at":"2026-02-18T22:25:42.766Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-02-12T00:26:31.839Z","updated_at":"2026-04-01T22:47:19.203Z","avatar_url":"https://github.com/Spectra010s.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Portal\n\nPortal started as a personal way to move files from phone to computer. It is now a CLI tool designed to make file transfers effortless.\n\n## Overview\n\nPortal (Hiverra Portal) is a local-first file transfer tool built for simple, reliable sharing across devices. Today it focuses on CLI ↔ CLI transfers. Browser flows are planned.\n\n## What Portal Does (Today)\n\n- **CLI ↔ CLI transfers** over local networks\n- **Files and folders** (recursive sends supported)\n- **Discovery mode** with identity verification\n- **Direct IP mode** for quick sends\n- **Transfer history** with export and cleanup\n- **Optional no-compress** mode (tar only)\n\n## Planned\n\n- **CLI ↔ Browser**\n- **Browser ↔ CLI**\n\n## Who It’s For\n\nPortal is for anyone who wants a fast, local, no-fuss way to move files between devices without relying on external services. It is ideal for personal workflows and small team transfers on the same network.\n\n## Install\n\n**Release Installers (Recommended)**\n\n**Shell script (Linux/macOS)**\n\n```bash\ncurl --proto '=https' --tlsv1.2 -LsSf https://github.com/Spectra010s/portal/releases/download/v0.10.1/hiverra-portal-installer.sh | sh\n```\n\n**PowerShell (Windows)**\n\n```powershell\npowershell -ExecutionPolicy Bypass -c \"irm https://github.com/Spectra010s/portal/releases/download/v0.10.1/hiverra-portal-installer.ps1 | iex\"\n```\n\n**npm (prebuilt binaries)**\n\n```bash\nnpm install -g @hiverra/portal@0.10.1\n```\n\n**Android / Termux**\n\n```bash\ncurl -LsSf https://github.com/Spectra010s/portal/releases/download/v0.10.1/hiverra-portal-android-installer.sh | sh\n```\n\n**Direct download**\n\n- Download the release asset for your OS from GitHub Releases.\n\n**Build From Source**\n\n- Install Rust\n\n### Build From Source\n\n**Requires the Rust toolchain.**\n\n```bash\ngit clone https://github.com/Spectra010s/portal.git\ncd portal\ncargo build --release -p hiverra-portal\n```\n\n## Quick Start\n\n1. Run setup\n\n```bash\nportal config setup\n```\n\n2. Prepare to Recieve\n\nOn the destination device\n\n```bash\nportal receive\n```\n\n1. On sender\n\n```bash\nportal send path/to/file\n```\n\n## Usage Examples\n\n**Start receiver**\n\n```bash\nportal receive\n```\n\n**Send via discovery**\n\n```bash\nportal send --to \u003cusername\u003e path/to/file\n```\n\n**Send via direct IP**\n\n```bash\nportal send --address \u003cip\u003e --port \u003cport\u003e path/to/file\n```\n\n**Send a folder (recursive)**\n\n```bash\nportal send -r path/to/folder\n```\n\n**No-compress**\n\n```bash\nportal send --no-compress path/to/file\n```\n\n**History (list + export)**\n\n```bash\nportal history\nportal history export --detailed --output portal_history.json\n```\n\n**Update**\nTo update Portal:\n\n```bash\nportal update\n```\n\n## How to Run or Use It\n\nPortal is a command-line tool. Common commands:\n\n**Send a file**\nUse this to send a specific file. If no file is specified, Portal will prompt you to select one.\n\n```bash\nportal send \u003cfile_path\u003e\n```\n\n**Send with discovery (recommended)**\nSends to a user by username and verifies identity.\n\n```bash\nportal send --to \u003cusername\u003e \u003cfile_path\u003e\n```\n\n**Send via direct IP**\nUse this when you already know the receiver’s IP and port.\n\n```bash\nportal send --address \u003cIP_ADDRESS\u003e --port \u003cPORT\u003e \u003cfile_path\u003e\n```\n\n**Receive**\nPuts Portal into listening mode to receive files.\n\n```bash\nportal receive\n```\n\n**Receive on a custom port**\n\n```bash\nportal receive --port \u003cPORT\u003e\n```\n\n**Configuration setup**\nInteractive setup to configure username and default port.\n\n```bash\nportal config setup\n```\n\n**Set a configuration value**\n\n```bash\nportal config set \u003ckey\u003e \u003cvalue\u003e\n```\n\n**Show a configuration value**\n\n```bash\nportal config show \u003ckey\u003e\n```\n\n**List current configuration**\n\n```bash\nportal config list\n```\n\n## Roadmap\n\n- [ ] CLI ↔ Browser: Send files to a web-based receiver via a temporary link.\n- [ ] Browser ↔ CLI: Drag-and-drop from a browser to a listening terminal.\n- [ ] Encryption: End-to-end encrypted tunnels for remote transfers.\n\n## Documentation\n\nDetailed guides for every workflow:\n\n- [docs/index.md](https://github.com/Spectra010s/portal/blob/main/docs/index.md)\n- [docs/install.md](https://github.com/Spectra010s/portal/blob/main/docs/install.md)\n- [docs/usage.md](https://github.com/Spectra010s/portal/blob/main/docs/usage.md)\n- [docs/cli-cli.md](https://github.com/Spectra010s/portal/blob/main/docs/cli-cli.md)\n- [docs/troubleshooting.md](https://github.com/Spectra010s/portal/blob/main/docs/troubleshooting.md)\n- [docs/faq.md](https://github.com/Spectra010s/portal/blob/main/docs/faq.md)\n\n## Author\n\nGithub: [Spectra010s](https://github.com/Spectra010s)\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](https://github.com/Spectra010s/portal/blob/main/LICENSE) file for details.\n\n\u003e Hiverra Portal: A lightweight CLI tool to transfer files between devices locally or remotely.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspectra010s%2Fportal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspectra010s%2Fportal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspectra010s%2Fportal/lists"}