Repair project paths after move

This commit is contained in:
Avi 2026-08-20 18:50:19 -05:00
commit 5b0b87b784
3 changed files with 23 additions and 4 deletions

View file

@ -5,7 +5,7 @@ verified green at the moment this file was written.
## Where things are ## 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"). - Git repo: `master` @ `a1445d1` ("Add contact-aware feed scope").
- Working tree is **clean** — this session's contact-aware feed changes and its checkpoint - Working tree is **clean** — this session's contact-aware feed changes and its checkpoint
are committed. are committed.
@ -64,7 +64,7 @@ npm run build # rebuilds the React bundle (dist/)
## How to resume ## 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` 2. State is committed: `git status` should be clean; `git log --oneline -5` shows `a1445d1`
at the top. at the top.
3. To try the contact feed: 3. To try the contact feed:

19
frontend/launch.desktop Executable file
View file

@ -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=

View file

@ -5,7 +5,7 @@ import sys
from typing import Dict, Any, Optional from typing import Dict, Any, Optional
# Path to your Rust binary (adjust if you move it) # 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: class NostrFeedManager:
""" """
@ -13,7 +13,7 @@ class NostrFeedManager:
""" """
def __init__(self): 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: def _run_rust_command(self, command: str, args: list) -> str:
"""Executes the Rust binary.""" """Executes the Rust binary."""