From 5b0b87b7840dc7025c4739b56d6abbf33d985afd Mon Sep 17 00:00:00 2001 From: Avi Date: Thu, 20 Aug 2026 18:50:19 -0500 Subject: [PATCH] Repair project paths after move --- CHECKPOINT-encryption.md | 4 ++-- frontend/launch.desktop | 19 +++++++++++++++++++ nostr_feed_manager.py | 4 ++-- 3 files changed, 23 insertions(+), 4 deletions(-) create mode 100755 frontend/launch.desktop diff --git a/CHECKPOINT-encryption.md b/CHECKPOINT-encryption.md index f6466cc..e843244 100644 --- a/CHECKPOINT-encryption.md +++ b/CHECKPOINT-encryption.md @@ -5,7 +5,7 @@ verified green at the moment this file was written. ## Where things are -- Project: `/home/avi/Projects/skills/nost-feed-manager` +- Project: `/home/avi/Projects/0_Nostr` - Git repo: `master` @ `a1445d1` ("Add contact-aware feed scope"). - Working tree is **clean** — this session's contact-aware feed changes and its checkpoint are committed. @@ -64,7 +64,7 @@ npm run build # rebuilds the React bundle (dist/) ## How to resume -1. Open the repo: `cd /home/avi/Projects/skills/nost-feed-manager` +1. Open the repo: `cd /home/avi/Projects/0_Nostr` 2. State is committed: `git status` should be clean; `git log --oneline -5` shows `a1445d1` at the top. 3. To try the contact feed: diff --git a/frontend/launch.desktop b/frontend/launch.desktop new file mode 100755 index 0000000..160b7a5 --- /dev/null +++ b/frontend/launch.desktop @@ -0,0 +1,19 @@ +[Desktop Entry] +Categories=Development; +Comment[en_US]=Starts the Electron app from this folder +Comment=Starts the Electron app from this folder +Exec=bash -c 'cd /home/avi/Projects/0_Nostr/frontend && npm start' +GenericName[en_US]= +GenericName= +Icon=utilities-terminal +MimeType= +Name[en_US]=Launch Nost Feed Manager +Name=Launch Nost Feed Manager +Path= +StartupNotify=true +Terminal=true +TerminalOptions= +Type=Application +Version=1.0 +X-KDE-SubstituteUID=false +X-KDE-Username= diff --git a/nostr_feed_manager.py b/nostr_feed_manager.py index d1a589d..eacd08c 100644 --- a/nostr_feed_manager.py +++ b/nostr_feed_manager.py @@ -5,7 +5,7 @@ import sys from typing import Dict, Any, Optional # Path to your Rust binary (adjust if you move it) -RUST_BINARY = "/home/avi/Projects/skills/nost-feed-manager/target/release/nostr-manager-backend" +RUST_BINARY = "/home/avi/Projects/0_Nostr/target/release/nostr-manager-backend" class NostrFeedManager: """ @@ -13,7 +13,7 @@ class NostrFeedManager: """ def __init__(self): - self.vault_file = "/home/avi/Projects/skills/nost-feed-manager/profiles_vault.json" + self.vault_file = "/home/avi/Projects/0_Nostr/profiles_vault.json" def _run_rust_command(self, command: str, args: list) -> str: """Executes the Rust binary."""