-
Notifications
You must be signed in to change notification settings - Fork 0
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
0 parents
commit 8627cc0
Showing
9 changed files
with
1,111 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.env* | ||
.venv* | ||
env*/ | ||
venv*/ | ||
ENV*/ | ||
env*.bak/ | ||
venv*.bak/ | ||
site/ | ||
public/ |
Large diffs are not rendered by default.
Oops, something went wrong.
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,66 @@ | ||
# पारदर्शी टिप्पणी पुस्तक | ||
|
||
इस पुरालेख का स्तुति परिचय `ssh` और `https` में। | ||
|
||
``` | ||
[email protected]:boseji/DocsTemplate.git | ||
``` | ||
|
||
``` | ||
https://github.com/boseji/DocsTemplate.git | ||
``` | ||
|
||
## कार्यविधि | ||
|
||
```sh | ||
# यह प्रणाली कोई भी लिनक्स के लिये प्रयुक्त है। | ||
python3 -m venv ~/.cache/temp-env | ||
|
||
# इस लागु करने की विधि। | ||
source ~/.cache/temp-env/bin/activate | ||
|
||
# अब सब निर्भर कारक गठरीओ को प्रबुद्धा करने की विधि। | ||
pip install mkdocs-material pillow cairosvg mkdocs-minify-plugin \ | ||
mkdocs-no-sitemap-plugin | ||
|
||
# अब इन सभी गठरीओ का विन्यासित करने की विधि, पर ये आवश्यक नहीं है। | ||
pip3 freeze > requirements.txt | ||
|
||
# इस चलाने कि विधि। | ||
mkdocs serve | ||
|
||
# अंत मे सब समाप्त करने के लिए इस विधि प्रयोग करें। | ||
source ~/.profile | ||
rm -rf ~/.cache/temp-env | ||
``` | ||
|
||
## अनुज्ञापत्र अथवा `लाइसेंस` (License) | ||
|
||
``` | ||
(C) Copyright (C) 2024 boseji - All Rights Reserved | ||
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. | ||
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/ or | ||
send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. | ||
``` | ||
|
||
All software, documents, artifacts, files of any type and articles | ||
found in this repository are governed by the following license - | ||
|
||
**Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)** | ||
|
||
<https://creativecommons.org/licenses/by-nc-nd/4.0/> | ||
|
||
[LICENSE.txt file](./LICENSE.txt) | ||
|
||
`SPDX: CC-BY-NC-ND-4.0` | ||
|
||
Contents have been shared under the following terms specified by the above license: | ||
|
||
- **Attribution** — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. | ||
|
||
- **NonCommercial** — You may not use the material for commercial purposes. | ||
|
||
- **NoDerivatives** — If you remix, transform, or build upon the material, you may not distribute the modified material. | ||
|
||
- **No additional restrictions** — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. | ||
|
Oops, something went wrong.