Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SQL Converter converts MariaDB/MySQL `.sql` dump files into SQLite-compatible SQL in the browser.

Live app: https://dominosaurs.github.io/sql-converter/
Live app: https://zainphp.github.io/sql-converter/

## ✨ Why This Exists

Expand Down Expand Up @@ -31,7 +31,7 @@ Firefox and Safari may not support the required `showSaveFilePicker` API for lar

## 🚀 Usage

1. Open https://dominosaurs.github.io/sql-converter/
1. Open https://zainphp.github.io/sql-converter/
2. Select a MariaDB/MySQL `.sql` dump file.
3. Choose where to save the converted SQLite SQL file.
4. Wait for conversion to finish.
Expand Down
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="canonical" href="https://dominosaurs.github.io/sql-converter/" />
<link rel="icon" type="image/svg+xml" href="https://dominosaurs.github.io/sql-converter/favicon.svg" />
<link rel="canonical" href="https://zainphp.github.io/sql-converter/" />
<link rel="icon" type="image/svg+xml" href="https://zainphp.github.io/sql-converter/favicon.svg" />
Comment on lines +5 to +6
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
Expand All @@ -16,14 +16,14 @@
<meta name="robots" content="index, follow" />
<meta name="theme-color" content="#102820" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dominosaurs.github.io/sql-converter/" />
<meta property="og:url" content="https://zainphp.github.io/sql-converter/" />
<meta property="og:title" content="SQL Converter - MariaDB/MySQL Dump to SQLite SQL" />
<meta
property="og:description"
content="Convert MariaDB and MySQL .sql dumps into SQLite-compatible SQL with browser-side streaming for large files."
/>
<meta property="og:site_name" content="SQL Converter" />
<meta property="og:image" content="https://dominosaurs.github.io/sql-converter/og-image.svg" />
<meta property="og:image" content="https://zainphp.github.io/sql-converter/og-image.svg" />
<meta property="og:image:type" content="image/svg+xml" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
Expand All @@ -33,13 +33,13 @@
name="twitter:description"
content="A browser-based SQL dump converter focused on MariaDB/MySQL to SQLite migration."
/>
<meta name="twitter:image" content="https://dominosaurs.github.io/sql-converter/og-image.svg" />
<meta name="twitter:image" content="https://zainphp.github.io/sql-converter/og-image.svg" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "SQL Converter",
"url": "https://dominosaurs.github.io/sql-converter/",
"url": "https://zainphp.github.io/sql-converter/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"description": "Convert MariaDB and MySQL SQL dump files into SQLite-compatible SQL in the browser.",
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"bugs": {
"url": "https://github.com/dominosaurs/sql-converter/issues"
"url": "https://github.com/zainphp/sql-converter/issues"
},
"dependencies": {
"react": "^19.2.6",
Expand All @@ -20,7 +20,7 @@
"typescript": "^6.0.3",
"vite": "^8.0.14"
},
"homepage": "https://dominosaurs.github.io/sql-converter/",
"homepage": "https://zainphp.github.io/sql-converter/",
"keywords": [
"sql",
"sqlite",
Expand All @@ -35,7 +35,7 @@
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/dominosaurs/sql-converter.git"
"url": "git+https://github.com/zainphp/sql-converter.git"
},
"scripts": {
"build": "tsc -b && vite build",
Expand Down
2 changes: 1 addition & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://dominosaurs.github.io/sql-converter/sitemap.xml
Sitemap: https://zainphp.github.io/sql-converter/sitemap.xml
2 changes: 1 addition & 1 deletion public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://dominosaurs.github.io/sql-converter/</loc>
<loc>https://zainphp.github.io/sql-converter/</loc>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
</url>
Expand Down