Document export/import modes and migrations

This commit is contained in:
thePR0M3TH3AN
2025-07-01 21:51:36 -04:00
parent a49a9f29d7
commit 2726c42cd9
3 changed files with 70 additions and 1 deletions

View File

@@ -101,6 +101,23 @@ pip install --upgrade pip
pip install -r src/requirements.txt
```
## Quick Start
After installing dependencies and activating your virtual environment, launch
SeedPass and create a backup:
```bash
# Start the application
python src/main.py
# Export your index using seed-only encryption
seedpass export --mode seed-only --file "~/seedpass_backup.json"
# Later you can restore it
seedpass import --mode seed-only --file "~/seedpass_backup.json"
```
## Usage
After successfully installing the dependencies, you can run SeedPass using the following command: