This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
17b128e
commit e0c6ea1
Showing
1 changed file
with
27 additions
and
23 deletions.
There are no files selected for viewing
50 changes: 27 additions & 23 deletions
50
ali-dbhub-server/ali-dbhub-server-start/src/main/resources/thymeleaf/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,53 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<link | ||
rel="icon" | ||
type="image/ico" | ||
sizes="32x32" | ||
href="https://oss-chat2db.alibaba.com/static/front/logo.ico"/> | ||
rel="icon" | ||
type="image/ico" | ||
sizes="32x32" | ||
href="./static/front/logo.ico" | ||
/> | ||
<title>Chat2DB</title> | ||
<meta | ||
name="description" | ||
content="Chat2DB 是面向开发人员的免费多平台数据库工具。多种数据库一个工具。它用于查询、创建和管理数据库,数据库可以在本地、服务器或云端。支持 MySQL、PostgreSQL、Microsoft SQL Server、Oracle、H2等,未来我们会不断完善其他非关系型数据的支持,如Redis。" | ||
name="description" | ||
content="Chat2DB 是面向开发人员的免费多平台数据库工具。多种数据库一个工具。它用于查询、创建和管理数据库,数据库可以在本地、服务器或云端。支持 MySQL、PostgreSQL、Microsoft SQL Server、Oracle、H2等,未来我们会不断完善其他非关系型数据的支持,如Redis。" | ||
/> | ||
<meta | ||
name="keywords" | ||
content="数据库,chatgpt,chat,DB,database,后端,程序员,数据库" | ||
name="keywords" | ||
content="数据库,chatgpt,chat,DB,database,后端,程序员,数据库" | ||
/> | ||
<meta property="og:title" content="Chat2DB" /> | ||
<meta property="og:title" content="Chat2DB"/> | ||
<meta | ||
property="og:description" | ||
content="Chat2DB 是面向开发人员的免费多平台数据库工具。多种数据库一个工具。它用于查询、创建和管理数据库,数据库可以在本地、服务器或云端。支持 MySQL、PostgreSQL、Microsoft SQL Server、Oracle、H2等,未来我们会不断完善其他非关系型数据的支持,如Redis。" | ||
property="og:description" | ||
content="Chat2DB 是面向开发人员的免费多平台数据库工具。多种数据库一个工具。它用于查询、创建和管理数据库,数据库可以在本地、服务器或云端。支持 MySQL、PostgreSQL、Microsoft SQL Server、Oracle、H2等,未来我们会不断完善其他非关系型数据的支持,如Redis。" | ||
/> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" | ||
/> | ||
<link rel="stylesheet" href="https://oss-chat2db.alibaba.com/static/front/umi.css" /> | ||
<link rel="stylesheet" href="./static/front/umi.css"/> | ||
<script> | ||
window.routerBase = "/"; | ||
|
||
</script> | ||
<script> | ||
//! umi version: 3.5.39 | ||
|
||
</script> | ||
</head> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script> | ||
<body> | ||
<div id="root"></div> | ||
<script> | ||
console.log("run startServer"); | ||
console.log("window===>", window.myAPI); | ||
if (window.myAPI) { | ||
window.myAPI.startServerForSpawn(); | ||
} | ||
</script> | ||
|
||
<script src="https://oss-chat2db.alibaba.com/static/front/umi.js"></script> | ||
</body> | ||
</script> | ||
|
||
<script src="./static/front/umi.js"></script> | ||
</body> | ||
</html> |