-
Notifications
You must be signed in to change notification settings - Fork 29
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
286 changed files
with
957 additions
and
37,782 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
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,5 +1,4 @@ | ||
.DS_Store | ||
docs/.DS_Store | ||
.DS_Store | ||
docs/.DS_Store | ||
pkt/.DS_Store | ||
env | ||
site |
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 |
---|---|---|
@@ -1 +1,12 @@ | ||
Mkdocs can auto generate docs website into static files. To do that you need to run - ``mkdocs build`` command on your server and Mkdocs will generate ``site`` folder with all static files. When files will be generated you need to point your server to Mkdocs folder where ``site`` folder was generated. Root file is - ``index.html``. | ||
# PKT Docs | ||
|
||
This is the documentation for the PKT project. | ||
When you push to this repository, github will build the documentation. | ||
|
||
To test the documentation before submitting your pull request, run: | ||
|
||
```bash | ||
./build.sh serve | ||
``` | ||
|
||
And then naviagate your browser to http://127.0.0.1:8000/ |
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,20 @@ | ||
#!/bin/bash | ||
|
||
if [ -e ./env/bin/activate ] ; then | ||
. ./env/bin/activate | ||
else | ||
rm -rf ./env | ||
mkdir ./env | ||
python3 -m venv ./env | ||
. ./env/bin/activate | ||
fi | ||
|
||
pip install mkdocs | ||
pip install ./theme-moonstone | ||
mkdocs build | ||
|
||
for arg in "$@"; do | ||
if [ "$arg" = "serve" ]; then | ||
mkdocs serve | ||
fi | ||
done |
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
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Empty file.
Oops, something went wrong.