-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
40 lines (36 loc) · 853 Bytes
/
setup.bat
File metadata and controls
40 lines (36 loc) · 853 Bytes
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
@echo off
echo ====================================
echo SummarAI MCP Server Setup
echo ====================================
echo.
echo 1. Installing dependencies...
call npm install
if %errorlevel% neq 0 (
echo Error: Failed to install dependencies
pause
exit /b 1
)
echo.
echo 2. Building the project...
call npm run build
if %errorlevel% neq 0 (
echo Error: Failed to build project
pause
exit /b 1
)
echo.
echo 3. Testing the server...
call npm test
echo.
echo ====================================
echo Setup Complete!
echo ====================================
echo.
echo Next steps:
echo 1. Update package.json with your information (author, repository, etc.)
echo 2. Run 'npm login' to login to npm
echo 3. Run 'npm publish' to publish your package
echo.
echo For detailed instructions, see SETUP_GUIDE.md
echo.
pause