-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
534 lines (465 loc) Β· 19 KB
/
index.html
File metadata and controls
534 lines (465 loc) Β· 19 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LiteDatum - Professional Schema Validation for Excel & CSV Files</title>
<meta name="description" content="Professional schema validation for Excel & CSV files. Zero-config vlite schema command assesses data cleaning feasibility in 30 seconds.">
<link rel="canonical" href="https://litedatum.com/">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.5rem;
font-weight: bold;
color: white;
}
.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}
.nav-links a {
color: white;
text-decoration: none;
transition: opacity 0.3s;
}
.nav-links a:hover {
opacity: 0.8;
}
/* Hero Section */
.hero {
text-align: center;
padding: 4rem 0;
color: white;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.hero .subtitle {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.hero .highlight {
background: linear-gradient(45deg, #ff6b6b, #feca57);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: bold;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2rem;
}
.btn {
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-block;
cursor: pointer;
}
.btn-primary {
background: linear-gradient(45deg, #ff6b6b, #feca57);
color: white;
box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
/* Schema Command Section */
.schema-section {
background: white;
padding: 4rem 0;
margin-top: -50px;
border-radius: 50px 50px 0 0;
}
.section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-header h2 {
font-size: 2.5rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.feature-card {
background: #f8f9fa;
padding: 2rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-card h3 {
color: #667eea;
margin-bottom: 1rem;
font-size: 1.3rem;
}
.code-block {
background: #2d3748;
color: #e2e8f0;
padding: 1.5rem;
border-radius: 10px;
font-family: 'Courier New', monospace;
margin: 1rem 0;
overflow-x: auto;
}
.code-block .command {
color: #68d391;
}
.code-block .output {
color: #fbb6ce;
margin-left: 1rem;
}
/* Excel/CSV Focus Section */
.excel-csv-section {
background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
color: white;
padding: 4rem 0;
}
.excel-csv-section h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.use-cases {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.use-case {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
padding: 2rem;
border-radius: 15px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
.use-case h3 {
margin-bottom: 1rem;
font-size: 1.2rem;
}
.use-case .icon {
font-size: 2rem;
margin-bottom: 1rem;
}
/* Resources Section */
.resources-section {
background: white;
padding: 4rem 0;
}
.resources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.resource-card {
background: linear-gradient(135deg, #667eea, #764ba2);
color: white;
padding: 2rem;
border-radius: 15px;
text-decoration: none;
transition: all 0.3s ease;
display: block;
}
.resource-card:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
color: white;
text-decoration: none;
}
.resource-card h3 {
margin-bottom: 0.5rem;
font-size: 1.2rem;
}
.resource-card p {
opacity: 0.9;
font-size: 0.9rem;
}
/* Footer */
footer {
background: #2d3748;
color: white;
padding: 3rem 0;
text-align: center;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
margin-bottom: 1rem;
color: #68d391;
}
.footer-section a {
color: #e2e8f0;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
}
.footer-section a:hover {
color: #68d391;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero .subtitle {
font-size: 1.1rem;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.nav-links {
display: none;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav class="container">
<div class="logo">LiteDatum</div>
<ul class="nav-links">
<li><a href="#schema">Schema Validation</a></li>
<li><a href="#excel-csv">Excel & CSV</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="https://github.com/litedatum/validatelite">GitHub</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>Professional <span class="highlight">Schema Validation</span><br>for Excel & CSV Files</h1>
<p class="subtitle">Zero-config data validation with the power of <code>vlite schema</code> command.<br>Get started in 30 seconds and validate your data like a pro.</p>
<div class="cta-buttons">
<a href="https://github.com/litedatum/validatelite" class="btn btn-primary">Start Validating Now</a>
<a href="#schema" class="btn btn-secondary">See Schema Command</a>
</div>
</div>
</section>
<!-- Schema Command Section -->
<section id="schema" class="schema-section">
<div class="container">
<div class="section-header">
<h2>The <code>vlite schema</code> Command</h2>
<p>Define your data contract once, validate everywhere. Perfect for data cleaning, type conversion assessment, and production quality checks.</p>
</div>
<div class="features-grid">
<div class="feature-card">
<h3>π― Define Your Schema</h3>
<p>Create a JSON schema that describes your current data and desired types.</p>
<div class="code-block">
{<br>
"legacy_users": {<br>
"rules": [<br>
{<br>
"field": "user_id",<br>
"type": "string",<br>
"desired_type": "integer"<br>
}<br>
]<br>
}<br>
}
</div>
</div>
<div class="feature-card">
<h3>β‘ Run Validation</h3>
<p>One simple command validates your entire dataset against the schema.</p>
<div class="code-block">
<span class="command">$ vlite schema --conn data.csv --rules schema.json</span>
</div>
</div>
<div class="feature-card">
<h3>π Get Detailed Reports</h3>
<p>Understand exactly what needs to be fixed before you start cleaning.</p>
<div class="code-block">
FIELD VALIDATION RESULTS<br>
========================<br>
Field: user_id<br>
<span style="color: #68d391;">β Field exists (string)</span><br>
<span style="color: #f56565;">β Type Conversion: 15 incompatible records</span>
</div>
</div>
</div>
</div>
</section>
<!-- Excel/CSV Focus Section -->
<section id="excel-csv" class="excel-csv-section">
<div class="container">
<h2>π Excel & CSV Validation Made Easy</h2>
<div class="use-cases">
<div class="use-case">
<div class="icon">π</div>
<h3>Data Cleaning Assessment</h3>
<p>Before you start cleaning messy datasets, know exactly what you're dealing with. ValidateLite assesses type conversion feasibility, saving you hours of guesswork.</p>
</div>
<div class="use-case">
<div class="icon">π</div>
<h3>Type Conversion Planning</h3>
<p>Converting string columns to integers, floats, or dates? Get a detailed report of which records will fail conversion before you write any cleaning code.</p>
</div>
<div class="use-case">
<div class="icon">βοΈ</div>
<h3>CI/CD Integration</h3>
<p>Embed schema validation directly into your data pipelines. Catch data quality issues before they reach production.</p>
</div>
<div class="use-case">
<div class="icon">π</div>
<h3>Production Monitoring</h3>
<p>Monitor data quality at every stage of your ETL/ELT processes. Prevent "garbage in, garbage out" scenarios.</p>
</div>
</div>
</div>
</section>
<!-- Resources Section -->
<section id="resources" class="resources-section">
<div class="container">
<div class="section-header">
<h2>π Resources & Guides</h2>
<p>Everything you need to master ValidateLite schema validation</p>
</div>
<div class="resources-grid">
<a href="https://github.com/litedatum/validatelite/blob/main/docs/usage.md" class="resource-card">
<h3>π Usage Guide</h3>
<p>Complete guide to all commands, data sources, rule types, and the Desired Type system</p>
</a>
<a href="https://github.com/litedatum/validatelite/blob/main/docs/CONFIG_REFERENCE.md" class="resource-card">
<h3>βοΈ Configuration Reference</h3>
<p>Learn how to configure ValidateLite via TOML files for advanced use cases</p>
</a>
<a href="https://github.com/litedatum/validatelite/blob/main/CONTRIBUTING.md" class="resource-card">
<h3>π€ Contributing Guide</h3>
<p>Join our community! Learn how to contribute to ValidateLite development</p>
</a>
<a href="https://blog.litedatum.com/posts/Devlog01-data-validation-tool/" class="resource-card">
<h3>π DevLog #1: Building Zero-Config Tool</h3>
<p>Behind the scenes: How we built a data validation tool that requires zero configuration</p>
</a>
<a href="https://blog.litedatum.com/posts/Devlog02-Rethinking-My-Data-Validation-Tool/" class="resource-card">
<h3>π DevLog #2: Platform Rethink</h3>
<p>Why we scrapped our half-built platform and focused on developer experience</p>
</a>
<a href="https://blog.litedatum.com/posts/Rule-Driven-Schema-Validation/" class="resource-card">
<h3>π― Rule-Driven Schema Validation</h3>
<p>Deep dive into our lightweight approach to schema validation and why it works</p>
</a>
<a href="what-is-schema-drift.html" class="resource-card">
<h3>π What is Schema Drift? Complete Guide</h3>
<p>Stop 3AM production failures! Learn what schema drift is, how it silently breaks ETL pipelines, and proven detection methods using ValidateLite for bulletproof data systems.</p>
</a>
<a href="database-schema-validation.html" class="resource-card">
<h3>π Database Schema Validation</h3>
<p>Master database schema validation to prevent pipeline failures, ensure data quality, and automate schema drift detection. Essential strategies for data engineers and architects.</p>
</a>
<a href="validateLite-vs-json-schema-validator.html" class="resource-card">
<h3>π ValidateLite vs. JSON Schema Validator</h3>
<p>Discover why JSON Schema Validator handles documents while ValidateLite validates database schemas. Learn which tool fits your data validation needs.</p>
</a>
<a href="data-validation-tools.html" class="resource-card">
<h3>π Data Validation Tools</h3>
<p>Discover how data validation tools prevent corrupt data from entering your systems. Learn essential validation techniques, explore schema validation methods using ValidateLite.</p>
</a>
<a href="database-validation-guide.html" class="resource-card">
<h3>π Database Validation Guide</h3>
<p>Master database validation techniques from constraints to application-layer checks. Learn referential integrity, foreign keys, and how validatelite protects your database.</p>
</a>
<a href="end-excel-data-validation-hell.html" class="resource-card">
<h3>π The End of Excel Data Validation Hell</h3>
<p>Stop wrestling with Excel's complex data validation rules. Discover ValidateLite's revolutionary Desired Type feature - the CSV validator that predicts data conversion success before migration.</p>
</a>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>ValidateLite</h4>
<a href="https://github.com/litedatum/validatelite">GitHub Repository</a>
<a href="https://pypi.org/project/validatelite/">PyPI Package</a>
<a href="https://github.com/litedatum/validatelite/issues">Report Issues</a>
</div>
<div class="footer-section">
<h4>Documentation</h4>
<a href="https://github.com/litedatum/validatelite/blob/main/README.md">Getting Started</a>
<a href="https://github.com/litedatum/validatelite/blob/main/docs/usage.md">User Guide</a>
<a href="https://github.com/litedatum/validatelite/blob/main/docs/CONFIG_REFERENCE.md">API Reference</a>
</div>
<div class="footer-section">
<h4>Community</h4>
<a href="https://blog.litedatum.com">Technical Blog</a>
<a href="https://github.com/litedatum/validatelite/discussions">Discussions</a>
<a href="https://github.com/litedatum/validatelite/blob/main/CONTRIBUTING.md">Contribute</a>
</div>
</div>
<div style="border-top: 1px solid #4a5568; padding-top: 2rem; margin-top: 2rem;">
<p>© 2024 LiteDatum. Built by <a href="#" style="color: #68d391;">Charles Fan</a>, Senior Data Architect.</p>
<p style="margin-top: 0.5rem; opacity: 0.8; font-size: 0.9rem;">Licensed under MIT. Join our growing community of data professionals.</p>
</div>
</div>
</footer>
</body>
</html>