-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deprivatize): scrub Vista codename and Libraxis org references #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
63e4d32
9757ab2
55ee917
228e2ba
493d942
0882719
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,10 @@ | ||
| # rust-memex Makefile | ||
| # ============================================================================ | ||
| # Service management, build, and maintenance targets | ||
| # Created by M&K (c)2026 Loctree | ||
| # Created by vetcoders (c)2026 Loctree | ||
| # ============================================================================ | ||
| # | ||
| # RAM DISK MODE (Dragon 512GB): | ||
| # RAM DISK MODE (512GB host): | ||
| # make ramdisk-up - Create 50GB RAM disk, copy DB, start service | ||
| # make ramdisk-down - Sync to disk, unmount RAM disk, stop service | ||
| # make snapshot - Sync RAM disk to disk (backup) | ||
|
|
@@ -14,7 +14,7 @@ | |
| SHELL := /bin/bash | ||
| BINARY := rust-memex | ||
| INSTALL_PATH := $(HOME)/.cargo/bin/$(BINARY) | ||
| LAUNCHD_PLIST := $(HOME)/Library/LaunchAgents/ai.libraxis.rust-memex.plist | ||
| LAUNCHD_PLIST := $(HOME)/Library/LaunchAgents/ai.vetcoders.rust-memex.plist | ||
|
|
||
| # Disk paths | ||
| DB_PATH_DISK := $(HOME)/.ai-memories/lancedb | ||
|
|
@@ -63,14 +63,14 @@ start: ## Start memex service via launchd | |
| echo "Service already running on port $(HTTP_PORT)"; \ | ||
| else \ | ||
| launchctl bootstrap gui/$$(id -u) $(LAUNCHD_PLIST) 2>/dev/null || \ | ||
| launchctl kickstart gui/$$(id -u)/ai.libraxis.rust-memex 2>/dev/null || \ | ||
| launchctl kickstart gui/$$(id -u)/ai.vetcoders.rust-memex 2>/dev/null || \ | ||
| $(INSTALL_PATH) serve --db-path $(DB_PATH) --http-port $(HTTP_PORT) --http-only & \ | ||
|
Comment on lines
65
to
67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
On macOS upgrades where the existing LaunchAgent is still installed as Useful? React with 👍 / 👎. |
||
| sleep 3; \ | ||
| echo "Started memex on port $(HTTP_PORT)"; \ | ||
| fi | ||
|
|
||
| stop: ## Stop memex service | ||
| @-launchctl bootout gui/$$(id -u)/ai.libraxis.rust-memex 2>/dev/null | ||
| @-launchctl bootout gui/$$(id -u)/ai.vetcoders.rust-memex 2>/dev/null | ||
| @-pkill -f "$(BINARY) serve" 2>/dev/null | ||
| @echo "Stopped memex service" | ||
|
|
||
|
|
@@ -105,7 +105,7 @@ dashboard: ## Open dashboard in browser | |
| @open http://localhost:$(HTTP_PORT)/ | ||
|
|
||
| # ============================================================================ | ||
| # RAM DISK (Dragon 512GB - full DB in RAM) | ||
| # RAM DISK (512GB host - full DB in RAM) | ||
| # ============================================================================ | ||
|
|
||
| ramdisk-create: ## Create 50GB RAM disk (requires sudo for mount) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line says authors and license are unchanged, but this same commit changes
Cargo.tomltoauthors = ["Vetcoders <hello@vetcoders.io>"], and the package/license file advertise BUSL-1.1 rather than MIT/Apache. For release consumers checking attribution or licensing, the changelog now gives incorrect compliance guidance; please either document the author metadata change and BUSL license or remove the claim.Useful? React with 👍 / 👎.