-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathquickstart.bat
More file actions
59 lines (51 loc) · 1.45 KB
/
quickstart.bat
File metadata and controls
59 lines (51 loc) · 1.45 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
51
52
53
54
55
56
57
58
59
@echo off
REM Continue Workflows Demo - Quick Start Script for Windows
REM This script helps users get started quickly
echo ========================================
echo Continue Workflows Demo - Quick Start
echo ========================================
echo.
REM Check if Node.js is installed
where node >nul 2>nul
if %errorlevel% neq 0 (
echo Error: Node.js is not installed. Please install Node.js first.
echo Visit: https://nodejs.org/
exit /b 1
)
echo ✓ Node.js found
node --version
echo.
REM Install dependencies
echo Installing dependencies...
call npm install
echo.
echo Running initial tests (these will fail - that's expected!)...
call npm test -- --passWithNoTests 2>nul
echo.
echo Running security audit (vulnerabilities expected)...
call npm audit 2>nul
echo.
echo Checking lint issues (warnings expected)...
call npm run lint 2>nul
echo.
echo ========================================
echo Setup Complete!
echo ========================================
echo.
echo Current Status:
echo - 3 failing tests (TypeError bug)
echo - Multiple lint warnings
echo - 1 high severity vulnerability (lodash)
echo - Low test coverage (~45%%)
echo - Missing documentation
echo.
echo Next Steps:
echo 1. Open Continue Hub: https://hub.continue.dev
echo 2. Connect your GitHub account
echo 3. Copy a prompt from WORKFLOWS.md
echo 4. Run it and watch the magic!
echo.
echo Start with: "Fix the TypeError in api/users.ts"
echo.
echo Happy testing!
pause