From 45e0f19ec94b89988e9c562b18484659accb715e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BCp?= Date: Fri, 8 Nov 2024 17:59:48 +0300 Subject: [PATCH] Initial commit --- .vscode/extensions.json | 7 ++++ .vscode/terminals.json | 16 ++++++++ LICENSE | 21 ++++++++++ README.md | 21 ++++++++++ docs/.markdownlint.json | 6 +++ docs/.nojekyll | 0 docs/README.md | 9 +++++ docs/_coverpage.md | 6 +++ docs/_sidebar.md | 2 + docs/index.html | 85 +++++++++++++++++++++++++++++++++++++++ docs/pages/quick-start.md | 33 +++++++++++++++ 11 files changed, 206 insertions(+) create mode 100644 .vscode/extensions.json create mode 100644 .vscode/terminals.json create mode 100644 LICENSE create mode 100644 README.md create mode 100644 docs/.markdownlint.json create mode 100644 docs/.nojekyll create mode 100644 docs/README.md create mode 100644 docs/_coverpage.md create mode 100644 docs/_sidebar.md create mode 100644 docs/index.html create mode 100644 docs/pages/quick-start.md diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..6be7c9c --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + "recommendations": [ + "yzhang.markdown-all-in-one", + "davidanson.vscode-markdownlint", + "fabiospampinato.vscode-terminals" + ] +} diff --git a/.vscode/terminals.json b/.vscode/terminals.json new file mode 100644 index 0000000..01f14fd --- /dev/null +++ b/.vscode/terminals.json @@ -0,0 +1,16 @@ +{ + "autorun": true, + "autorun_delay": 500, + "auto_kill": true, + "terminals": [ + { + "name": "Serve Docs", + "description": "Documentation server", + "focus": true, + "execute": true, + "recycle": true, + "commands": ["npx docsify serve docs --port 1000"], + "color": "terminal.ansiGreen" + } + ] +} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c8d1351 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Awesome Templates + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..e6ac2e3 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# docsify-starter + +Quick **[docsify](https://docsify.js.org/)** starter template. + +## 📦 Installation + +First install docsify CLI + +```bash +npm i docsify-cli -g +``` + +## 🚀 Serve Docs + +Start `docs` project + +```bash +npx docsify serve docs --port 1000 +``` + +To configure docsify see [index.html](./docs/index.html#L20) file. diff --git a/docs/.markdownlint.json b/docs/.markdownlint.json new file mode 100644 index 0000000..a54f376 --- /dev/null +++ b/docs/.markdownlint.json @@ -0,0 +1,6 @@ +{ + "MD013": false, + "MD033": false, + "MD051": false, + "MD041": false +} \ No newline at end of file diff --git a/docs/.nojekyll b/docs/.nojekyll new file mode 100644 index 0000000..e69de29 diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..ea155f8 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,9 @@ +# My Awesome Project + +Enim nostrud ut deserunt sit deserunt veniam. Ullamco culpa Lorem Lorem voluptate minim consectetur consectetur dolor adipisicing. Lorem aliquip minim in non Lorem incididunt. Aute nulla proident sunt consequat ut ad enim consectetur incididunt sit. Incididunt laborum fugiat dolor laborum ullamco exercitation nisi. Esse ut incididunt commodo mollit esse dolor excepteur quis occaecat proident cupidatat fugiat dolor. Occaecat occaecat tempor amet irure exercitation consectetur incididunt occaecat veniam sint aliquip eiusmod. + +Pariatur voluptate Lorem elit minim quis et tempor aliqua adipisicing enim. Excepteur laborum aliqua et do eu commodo nostrud reprehenderit cupidatat. Et fugiat ex pariatur velit aliquip laboris dolore reprehenderit aliquip commodo commodo Lorem ullamco excepteur. Fugiat fugiat excepteur voluptate commodo occaecat et. Duis dolore occaecat duis velit ea magna ullamco eiusmod. + +Ea irure ea consectetur fugiat eu magna officia veniam labore duis eiusmod velit. Nostrud enim laborum eiusmod nulla Lorem incididunt sunt officia aliquip cillum. Nostrud consectetur excepteur culpa pariatur excepteur enim laborum nulla pariatur quis irure non exercitation. Cupidatat velit veniam qui fugiat enim irure ipsum magna sint nulla ex consectetur enim tempor. Eu irure irure occaecat qui exercitation amet exercitation irure cillum reprehenderit reprehenderit. + +Elit laborum dolor pariatur pariatur cupidatat culpa amet exercitation nostrud sit magna aliquip eiusmod irure. Exercitation qui consectetur adipisicing excepteur commodo dolor sunt anim commodo duis ullamco cillum irure. Culpa ea reprehenderit duis tempor non fugiat labore incididunt velit officia magna. Deserunt adipisicing excepteur sint enim eiusmod officia excepteur elit consequat consequat est proident consequat. Ea officia nisi culpa do dolor deserunt velit sunt id enim exercitation dolore cillum aliquip. diff --git a/docs/_coverpage.md b/docs/_coverpage.md new file mode 100644 index 0000000..c902039 --- /dev/null +++ b/docs/_coverpage.md @@ -0,0 +1,6 @@ +# Docsify Starter 💗 + +> Quick docsify starter template + +[GitHub](https://github.com/awe-templates/docsify-starter) +[Quick Start](/pages/quick-start) diff --git a/docs/_sidebar.md b/docs/_sidebar.md new file mode 100644 index 0000000..5ba1ffd --- /dev/null +++ b/docs/_sidebar.md @@ -0,0 +1,2 @@ +* [Home](/) +* [Quick Start](pages/quick-start.md) diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..ff9a68c --- /dev/null +++ b/docs/index.html @@ -0,0 +1,85 @@ + + + + + Document + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + diff --git a/docs/pages/quick-start.md b/docs/pages/quick-start.md new file mode 100644 index 0000000..88c5c61 --- /dev/null +++ b/docs/pages/quick-start.md @@ -0,0 +1,33 @@ +# Quick Start + +- [Quick Start](#quick-start) + - [📦 Installation](#-installation) + - [🚀 Usage](#-usage) + - [📚 Learn More](#-learn-more) + +Duis et occaecat occaecat esse pariatur ut eu ut in sint eu. Laborum officia reprehenderit dolore nostrud consectetur ipsum. Deserunt mollit irure fugiat amet. Quis id ullamco aliquip excepteur incididunt sunt esse. Officia exercitation incididunt eiusmod amet in quis anim esse in elit incididunt. + +## 📦 Installation + +```bash +npm i @my/awesome-package + +# or + +pnpm i @my/awesome-package +``` + +## 🚀 Usage + +```typescript +import { AwesomeModule } from '@my/awesome-package'; + +...AwesomeModule.startNewDay() +``` + +## 📚 Learn More + +- [What is Turbopack](https://www.youtube.com/watch?v=6ZwnBI4Rb1w) +- [Is TurboPack using SWC under the hood?](https://github.com/vercel/turbo/discussions/2350#discussioncomment-3965562) +- [Redux DevTools Extension](https://github.com/reduxjs/redux-devtools) +- [Prisma ORM](https://www.prisma.io/orm)