-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEASIEST_WAY.txt
More file actions
83 lines (57 loc) · 4.57 KB
/
EASIEST_WAY.txt
File metadata and controls
83 lines (57 loc) · 4.57 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
╔══════════════════════════════════════════════════════════════╗
║ EASIEST WAYS TO START THE APP ║
╚══════════════════════════════════════════════════════════════╝
🎯 METHOD 1: VS Code (If you have it)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. Open this folder in VS Code
2. Press Ctrl + ` (backtick key, above Tab)
3. Type: npm install
4. Press Enter, wait
5. Type: npm run dev
6. Press Enter
7. Done! Browser opens automatically
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🎯 METHOD 2: Right-Click Menu (Windows 11/10)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
1. Right-click in this folder (empty space)
2. Click "Open in Terminal" or "Open in Windows Terminal"
3. Type: npm install
4. Press Enter, wait for it to finish
5. Type: npm run dev
6. Press Enter
7. Open browser to: http://localhost:3000
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🎯 METHOD 3: One Command (If npm works)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Open terminal here and type:
npm install && npm run dev
That's it! One line does everything.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🎯 METHOD 4: Double-Click Simple Scripts
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Try these (they're simpler than start.bat):
• start-simple.bat (for Command Prompt)
• start-simple.ps1 (for PowerShell - right-click → Run with PowerShell)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🎯 METHOD 5: Visual Guide
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Double-click: SIMPLE_START.html
This opens a nice visual guide in your browser with
step-by-step instructions and all methods.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
💡 WHAT YOU NEED TO KNOW:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
• First time: Run "npm install" (takes 1-2 minutes)
• After that: Just "npm run dev" (starts instantly)
• The terminal window must stay open (don't close it)
• To stop: Press Ctrl+C in the terminal
• Browser should open automatically, or go to http://localhost:3000
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
❓ STILL NOT WORKING?
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
If you see "npm is not recognized":
→ Node.js is not installed
→ Open INSTALL_NODEJS.txt
→ Install Node.js, restart computer
→ Try again
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━