Merge pull request #1 from Linux4Yourself/feature/docsify

docsify works
This commit is contained in:
Anton 2021-04-20 18:46:38 +03:00 committed by GitHub
commit 036b6dd11e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1798 additions and 1 deletions

23
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,23 @@
{
"html.format.wrapAttributes": "force-expand-multiline",
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.unfoldOnClickAfterEndOfLine": true,
"editor.autoIndent": "none",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
// "source.organizeImports": true
},
"editor.renderControlCharacters": true,
"editor.renderIndentGuides": true,
"files.eol": "\n",
"editor.tabSize": 2,
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"editor.defaultFormatter": "vscode.configuration-editing",
"editor.detectIndentation": false,
// "eslint.validate": [{
// "language": "typescript",
// // "autoFix": true,
// }]
}

View File

@ -4,4 +4,10 @@
Это готовый шаблон и рекомендации, выполнив которые, вы получите правильно работающую систему на Ваш вкус. Вы всё контролируете, а мы просто протягиваем Вам руку помощи.
Начните собственное путешествие в мир Linux прямо сейчас!
Начните собственное путешествие в мир Linux прямо сейчас!
## Запустить руководство локально:
```bash
npm i && npm start
```

1742
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "linux4yourself.book",
"version": "1.0.0",
"description": "Книга обеспечит Вас необходимыми знаниями чтобы создать свою собственную Linux систему с самого начала.",
"main": "index.js",
"scripts": {
"start": "node ./node_modules/docsify-cli/bin/docsify serve docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Linux4Yourself/Linux4Yourself.Book.git"
},
"keywords": [
"book",
"linux"
],
"author": "Linux4Yourself community",
"license": "MIT",
"bugs": {
"url": "https://github.com/Linux4Yourself/Linux4Yourself.Book/issues"
},
"homepage": "https://github.com/Linux4Yourself/Linux4Yourself.Book#readme",
"devDependencies": {
"docsify-cli": "^4.4.3"
}
}