-
Notifications
You must be signed in to change notification settings - Fork 5
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
Showing
250 changed files
with
22,632 additions
and
6,092 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
website/public | ||
# Dependencies | ||
/node_modules | ||
|
||
# Production | ||
/build | ||
|
||
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
|
||
# Misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
presets: [require.resolve('@docusaurus/core/lib/babel/preset')], | ||
}; |
File renamed without changes.
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,11 @@ | ||
--- | ||
sidebar_position: 1 | ||
--- | ||
|
||
# Web3企业级工程 | ||
作者:BoxChen | ||
|
||
该系列文章为个人在Web3中总结的开发经验,可能会有不对的地方,还请多提意见。 | ||
系列文章面相用户为对开发编程有一定基础的开发人员,如果对编程0基础,可能不一定适合阅读此系列文章。但也可以粗略的观看,也许在未来会有不一样的感悟。 | ||
|
||
如果你有什么好的建议或者想看的内容,随时都可以在推特上联系我。 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
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,8 @@ | ||
{ | ||
"label": "初级篇", | ||
"position": 2, | ||
"link": { | ||
"type": "generated-index", | ||
"description": "简单的进入Web3世界" | ||
} | ||
} |
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,137 @@ | ||
// @ts-check | ||
// Note: type annotations allow type checking and IDEs autocompletion | ||
|
||
const lightCodeTheme = require('prism-react-renderer/themes/github'); | ||
const darkCodeTheme = require('prism-react-renderer/themes/nightOwl'); | ||
|
||
/** @type {import('@docusaurus/types').Config} */ | ||
const config = { | ||
title: 'Web3企业级工程', | ||
tagline: 'Web3企业级工程', | ||
url: 'https://your-docusaurus-test-site.com', | ||
baseUrl: '/', | ||
onBrokenLinks: 'throw', | ||
onBrokenMarkdownLinks: 'warn', | ||
// favicon: 'img/favicon.ico', | ||
|
||
// GitHub pages deployment config. | ||
// If you aren't using GitHub pages, you don't need these. | ||
organizationName: 'nishuzumi', // Usually your GitHub org/user name. | ||
projectName: 'web3ee', // Usually your repo name. | ||
|
||
// Even if you don't use internalization, you can use this field to set useful | ||
// metadata like html lang. For example, if your site is Chinese, you may want | ||
// to replace "en" with "zh-Hans". | ||
i18n: { | ||
defaultLocale: 'zh-Hans', | ||
locales: ['zh-Hans'], | ||
}, | ||
|
||
presets: [ | ||
[ | ||
'classic', | ||
/** @type {import('@docusaurus/preset-classic').Options} */ | ||
{ | ||
docs: { | ||
sidebarPath: require.resolve('./sidebars.js'), | ||
}, | ||
blog: { | ||
showReadingTime: true, | ||
}, | ||
theme: { | ||
customCss: require.resolve('./src/css/custom.css'), | ||
}, | ||
googleAnalytics: { | ||
trackingID: 'UA-36085609-4', | ||
anonymizeIP: true, | ||
}, | ||
}, | ||
], | ||
], | ||
themes:[ | ||
[ | ||
require.resolve("@easyops-cn/docusaurus-search-local"), | ||
{ | ||
// ... Your options. | ||
// `hashed` is recommended as long-term-cache of index file is possible. | ||
hashed: true, | ||
// For Docs using Chinese, The `language` is recommended to set to: | ||
// ``` | ||
// language: ["en", "zh"], | ||
// ``` | ||
}, | ||
], | ||
], | ||
themeConfig: | ||
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */ | ||
({ | ||
image:'img/primary_banner.png', | ||
navbar: { | ||
title: 'Web3企业级工程', | ||
// logo: { | ||
// alt: 'My Site Logo', | ||
// src: 'img/tinyLogo.png', | ||
// }, | ||
items: [ | ||
{ | ||
type: 'doc', | ||
docId: 'intro', | ||
position: 'left', | ||
label: '文档', | ||
}, | ||
{ | ||
href: 'https://github.com/nishuzumi/Web3-Enterprise-level-engineering', | ||
label: 'GitHub', | ||
position: 'right', | ||
}, | ||
], | ||
}, | ||
colorMode:{ | ||
defaultMode:'dark', | ||
disableSwitch:true, | ||
}, | ||
footer: { | ||
style: 'dark', | ||
links: [ | ||
{ | ||
title: 'Docs', | ||
items: [ | ||
{ | ||
label: '文档', | ||
to: '/docs/intro', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '社交链接', | ||
items: [ | ||
{ | ||
label: 'Discord', | ||
href: 'https://discordapp.com/invite/vqRrQBge8S', | ||
}, | ||
{ | ||
label: 'Twitter', | ||
href: 'https://twitter.com/BoxMrChen', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: '捐赠', | ||
items: [ | ||
{ | ||
label: 'ETH:boxchen.eth', | ||
to:"https://etherscan.io/enslookup-search?search=boxchen.eth" | ||
}, | ||
], | ||
}, | ||
], | ||
copyright: `Copyright © ${new Date().getFullYear()} Web3Box, Inc. Built with Docusaurus.`, | ||
}, | ||
prism: { | ||
theme: lightCodeTheme, | ||
darkTheme: darkCodeTheme, | ||
}, | ||
}), | ||
}; | ||
|
||
module.exports = config; |
Oops, something went wrong.
1e59cae
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
web3-enterprise-level-engineering – ./
web3-enterprise-level-engineering-2300206764.vercel.app
web3-enterprise-level-engineering.vercel.app
ee.web3box.dev
web3-enterprise-level-engineering-git-master-2300206764.vercel.app