-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOPEN_THIS.html
More file actions
76 lines (72 loc) · 2.45 KB
/
OPEN_THIS.html
File metadata and controls
76 lines (72 loc) · 2.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Car Wash App - Quick Start</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: #f5f5f5;
}
.box {
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
h1 { color: #2563eb; }
.big-btn {
display: block;
background: #2563eb;
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
border-radius: 8px;
font-size: 18px;
margin: 10px 0;
}
.big-btn:hover { background: #1e40af; }
code {
background: #f3f4f6;
padding: 2px 6px;
border-radius: 4px;
font-family: monospace;
}
</style>
</head>
<body>
<div class="box">
<h1>🚗 Mobile Car Wash Manager</h1>
<p><strong>Simple Preview:</strong> <a href="preview.html">preview.html</a></p>
</div>
<div class="box">
<h2>To Run the Full App:</h2>
<p>1. Right-click in this folder → "Open in Terminal"</p>
<p>2. Type: <code>npm install</code> (first time only)</p>
<p>3. Type: <code>npm run dev</code></p>
<p>4. Browser opens automatically!</p>
</div>
<div class="box">
<h2>🚀 Host Online for Testing:</h2>
<p style="background: #dbeafe; padding: 15px; border-radius: 8px; margin: 10px 0;">
<strong>Quickest way:</strong><br>
1. Double-click <strong>QUICK_HOST.bat</strong><br>
2. Drag 'dist' folder to Netlify<br>
3. Get instant link to test online!
</p>
<a href="HOST_ONLINE_NOW.txt" class="big-btn" style="background: #10b981;">🌐 Host Online Now</a>
</div>
<div class="box">
<h2>Quick Links:</h2>
<a href="preview.html" class="big-btn">📱 View Preview</a>
<a href="START_HERE.txt" class="big-btn">📖 Start Here Guide</a>
<a href="DEPLOY.txt" class="big-btn">🚀 Deploy Online</a>
</div>
</body>
</html>