Installation & Setup
Installation & Setup
This guide covers installing CyberPaste, building from source, and keeping it up to date.
System Requirements
| Requirement | Minimum |
|---|---|
| OS | Windows 10 (64-bit) or later |
| Architecture | x64 |
| Runtime | None (Tauri bundles all dependencies) |
| Disk space | ~50 MB |
| RAM | 2 GB |
Installation Methods
winget (Recommended)
winget install CyberGems.CyberPaste
Installer
- Download the latest
.msiinstaller from Releases - Run the installer
- Follow the setup wizard
- Launch CyberPaste
Portable
- Download the portable zip from releases
- Extract to any folder
- Run
CyberPaste.exe
Building from Source
Prerequisites
| Tool | Version |
|---|---|
| Node.js | 18+ |
| Rust | 1.77+ |
| pnpm | Latest |
Setup
# Clone the repository
git clone https://github.com/CyberGems/CyberPaste.git
cd CyberPaste
# Install dependencies
pnpm install
# Run in development mode
pnpm tauri dev
Build for Production
pnpm tauri build
The built installer will be in:
src-tauri/target/release/bundle/nsis/
Auto-Start
CyberPaste can launch automatically when you sign in:
Enable/Disable
- Settings → General → Start with Windows
- Or: Windows Settings → Apps → Startup → Toggle CyberPaste
How It Works
CyberPaste registers itself in the Windows startup via the Tauri autostart plugin.
Auto-Update
How It Works
- CyberPaste periodically checks GitHub Releases for new versions
- When an update is available, a toast notification appears
- Click Download to get the update
- The installer launches when download completes
- CyberPaste restarts with the new version
Update Settings
| Setting | Description |
|---|---|
| Check for updates | Enable/disable automatic checking |
| Auto-check on startup | Check when app launches |
Manual Update
- Go to Settings → General → Check for Updates
- Or: Download the latest installer from releases
Data Location
Default Locations
| Data | Location |
|---|---|
| Database | %APPDATA%\CyberPaste\cyber_paste.db |
| Settings | %APPDATA%\CyberPaste\settings.json |
| Logs | %APPDATA%\CyberPaste\logs\ |
Portable Mode
In portable mode, all data is stored in the application folder.
Uninstallation
Standard Uninstall
- Windows Settings → Apps → Installed Apps
- Find CyberPaste → Click Uninstall
What Gets Removed
- Program files
- Start Menu shortcuts
- Auto-start entry
What Is Kept
- Database and settings (in
%APPDATA%\CyberPaste)
⚠️ To remove all data, manually delete
%APPDATA%\CyberPasteafter uninstalling.