-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (70 loc) · 4.18 KB
/
Copy pathindex.html
File metadata and controls
72 lines (70 loc) · 4.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'wasm-unsafe-eval' 'sha256-DPjKEqDeQi0Af+DWILryLTPQ+ODOMj1qaKcHudfVflM=' https://accounts.google.com https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline'; connect-src 'self' https://api.openai.com https://accounts.google.com https://oauth2.googleapis.com https://www.googleapis.com https://bigquery.googleapis.com https://cloudresourcemanager.googleapis.com https://cdn.jsdelivr.net https://files.pythonhosted.org ws://localhost:* http://localhost:*; img-src 'self' data: https://*.googleusercontent.com; frame-src https://accounts.google.com; worker-src 'self' blob:; object-src 'none'; base-uri 'self'; form-action 'self' https://accounts.google.com" />
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🐦</text></svg>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#1a1a1a" media="(prefers-color-scheme: dark)" />
<meta name="color-scheme" content="light dark" />
<meta name="format-detection" content="telephone=no" />
<meta name="robots" content="index, follow" />
<meta name="google-site-verification" content="7DfdWB8AILKs4joDJC7JWoPQt06z3RMXAb-OpQMt0_k" />
<meta name="description" content="Squill is a free, open-source SQL canvas for connected queries, schema browsing, notes, and column analytics. Run DuckDB locally or query BigQuery directly from your browser." />
<meta name="keywords" content="SQL canvas, browser SQL, local-first SQL editor, DuckDB, BigQuery" />
<meta name="author" content="Max Halford" />
<meta name="application-name" content="Squill" />
<!-- Open Graph / Social -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Squill - Local-first SQL Canvas" />
<meta property="og:description" content="A local-first SQL canvas that runs entirely in your browser." />
<meta property="og:url" content="https://maxhalford.github.io/squill/" />
<meta property="og:site_name" content="Squill" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://maxhalford.github.io/squill/og-image.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Squill - local-first SQL canvas" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Squill - Local-first SQL Canvas" />
<meta name="twitter:description" content="A local-first SQL canvas that runs entirely in your browser." />
<meta name="twitter:image" content="https://maxhalford.github.io/squill/og-image.png" />
<meta name="twitter:image:alt" content="Squill - local-first SQL canvas" />
<link rel="canonical" href="https://maxhalford.github.io/squill/" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Squill",
"url": "https://maxhalford.github.io/squill/",
"description": "A free, open-source, local-first SQL canvas for DuckDB and BigQuery.",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"browserRequirements": "Requires JavaScript and WebAssembly",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "EUR"
},
"featureList": [
"Connected SQL query canvas",
"DuckDB in the browser",
"Direct BigQuery access",
"Schema browser",
"Column analytics",
"Local browser storage"
],
"codeRepository": "https://github.com/MaxHalford/squill",
"license": "https://www.gnu.org/licenses/agpl-3.0.html"
}
</script>
<title>Squill — Local-first SQL canvas</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>