-
-
Notifications
You must be signed in to change notification settings - Fork 809
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
369394c
commit 6d47e86
Showing
9 changed files
with
99 additions
and
14 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
# | ||
.DS_Store | ||
|
||
dist | ||
build | ||
node_modules | ||
npm-debug.log | ||
|
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
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
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
#### 第1章 初识 MySQL | ||
|
||
- chapter1/: 第1章 初识 MySQL | ||
- chapter1/1.1.md: 数据库基础 | ||
- chapter1/1.2.md: 数据库技术构成 | ||
- chapter1/1.3.md: 什么是MySQL | ||
- chapter1/1.4.md: 如何学习MySQL | ||
|
||
|
||
#### 第2章 MySQL的安装与配置 | ||
|
||
- chapter2/: 第2章 MySQL 的安装与配置 | ||
- chapter2/2.1.md: Mac平台下安装与配置MySQL | ||
- chapter2/2.2.md: Centos 平台安装与卸载MySQL | ||
- chapter2/2.3.md: Docker 安装 MySQL | ||
- chapter2/2.4.md: 启动数据库设置初始密码 | ||
- chapter2/2.5.md: MySQL工具 | ||
- chapter2/2.6.md: MySQL配置修改 | ||
|
||
|
||
#### 第3章 数据库的基本操作 | ||
|
||
- chapter3/: 第3章 数据库的基本操作 | ||
- chapter3/3.1.md: 连接数据库 | ||
- chapter3/3.2.md: 查看选择数据库 | ||
- chapter3/3.3.md: 创建数据库 | ||
- chapter3/3.4.md: 删除数据库 | ||
- chapter3/3.5.md: 数据库存储引擎 |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
|
||
logo: ./mysql.svg | ||
favicon: ./mysql.svg | ||
|
||
menus: | ||
Home: index.html | ||
Cheat Sheet: 21-minutes-MySQL-basic-entry.html | ||
Awesome: awesome-mysql.html | ||
|
||
editButton: | ||
label: Edit this page on GitHub | ||
url: https://github.com/jaywcjlove/mysql-tutorial/blob/master/ | ||
|
||
footer: | | ||
Released under the MIT License. Copyright © 2022 Kenny Wong<br /> | ||
Generated by <a href="https://github.com/jaywcjlove/idoc" target="_blank">idoc</a> v{{idocVersion}} |
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,21 +1,21 @@ | ||
{ | ||
"name": "mysql-tutorial", | ||
"version": "0.0.1", | ||
"title": "MySQL 入门教程", | ||
"description": "从零开始学习MySQL,主要是面向MySQL数据库管理系统初学者。", | ||
"homepage": "https://jaywcjlove.github.io/mysql-tutorial", | ||
"author": "jaywcjlove", | ||
"license": "MIT", | ||
"private": true, | ||
"scripts": { | ||
"start": "node scripts/build.mjs" | ||
"start": "idoc --watch", | ||
"build": "idoc" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/jaywcjlove/mysql-tutorial.git" | ||
}, | ||
"devDependencies": { | ||
"fs-extra": "^10.0.0", | ||
"markdown-to-html-cli": "^3.2.4", | ||
"recursive-readdir-files": "^2.0.7" | ||
"idoc": "^1.13.1" | ||
} | ||
} |