-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
50 lines (45 loc) · 1.38 KB
/
Copy pathsetup.bat
File metadata and controls
50 lines (45 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@echo off
echo ========================================
echo KNOWLEDGE VAULT - Windows Setup
echo ========================================
echo.
echo Step 1: Creating virtual environment...
python -m venv venv
call venv\Scripts\activate
echo.
echo Step 2: Installing dependencies...
pip install -r requirements.txt
echo.
echo Step 3: Creating directory structure...
mkdir documents 2>nul
mkdir vault\encrypted 2>nul
mkdir config 2>nul
mkdir logs 2>nul
mkdir review 2>nul
echo.
echo Step 4: Setting up environment file...
if not exist .env (
echo ANTHROPIC_API_KEY=your_anthropic_key_here > .env
echo OPENNODE_API_KEY=your_opennode_key_here >> .env
echo OPENNODE_WEBHOOK_SECRET=your_webhook_secret_here >> .env
echo ADMIN_TOKEN=change_this_to_something_secret >> .env
echo VAULT_KEY= >> .env
echo.
echo .env file created - EDIT IT with your actual API keys
) else (
echo .env already exists - skipping
)
echo.
echo ========================================
echo NEXT STEPS:
echo ========================================
echo 1. Edit .env with your API keys
echo 2. Add your knowledge documents to /documents folder
echo - ai_safety_frameworks.txt
echo - data_science_patterns.txt
echo - bitcoin_agentic_web.txt
echo - local_knowledge.txt
echo 3. Run: python vault\encrypt_documents.py
echo 4. Run: run_dev.bat
echo ========================================
pause