feat: support running on local machine (#138)

- `npm i`
- `npm run dev`
This commit is contained in:
Yang Libin 2023-05-11 09:52:19 +08:00 committed by GitHub
parent 4857caba57
commit edeb8ad824
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2066 additions and 3 deletions

View File

@ -11,7 +11,7 @@ jobs:
if: github.repository == 'doocs/source-code-hunter'
steps:
- name: Checkout Branch
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Compress Images
id: calibre

4
.gitignore vendored
View File

@ -32,5 +32,5 @@ local.properties
.DS_Store
gradle.properties
*.gh
Redis源码分析的内容暂时现放在这个模块下等中间件的内容多了再将项目分成框架和中间件两大模块
.vscode
.vscode
/node_modules

2047
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "source-code-hunter",
"version": "1.0.0",
"description": "从源码层面,剖析挖掘互联网行业主流技术的底层实现原理,为广大开发者 “提升技术深度” 提供便利。",
"scripts": {
"dev": "docsify serve --open",
"convert": "docsify-pdf-converter"
},
"dependencies": {
"docsify-cli": "^4.4.4"
},
"devDependencies": {
"prettier": "2.8.8"
},
"license": "SEE LICENSE IN LICENSE"
}