- PWA shell with service worker offline caching - Encrypted vault using IndexedDB - Lightning/L402 module placeholder - Ollama bridge placeholder - MIT license, no proprietary deps Co-authored-by: Hermes <hermes@nousresearch.com>
15 lines
420 B
Bash
Executable File
15 lines
420 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
echo "Sovereign Stack PWA installer"
|
|
echo "This will deploy the PWA and configure local Ollama bridge."
|
|
read -p "Continue? [y/N] " -n 1 -r
|
|
echo
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
|
echo "Aborted."
|
|
exit 1
|
|
fi
|
|
mkdir -p ~/sovereign-stack-pwa
|
|
cp -r ./* ~/sovereign-stack-pwa/
|
|
echo "Installed to ~/sovereign-stack-pwa"
|
|
echo "Run: cd ~/sovereign-stack-pwa && python3 -m http.server 8080"
|