-
Notifications
You must be signed in to change notification settings - Fork 2
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
1 parent
9358d02
commit f039779
Showing
2 changed files
with
25 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 |
---|---|---|
@@ -1 +1,24 @@ | ||
## Orb Community Website | ||
|
||
Orb documentation can be accessed [here](https://orb.community/). | ||
|
||
This documentation is made in mkdocs, so for local development follow the steps below: | ||
|
||
> ⚠️ Some mkdocs features do not render properly in pure markdown. Please, use the local server locally. | ||
## Setup your Python environment | ||
|
||
<b>You need to have python >= 3.8 installed</b> | ||
|
||
Create a virtual environment: `$ python3 -m venv name_of_virtualenv` | ||
|
||
Activate your virtual environment: `$ source name_of_virtualenv/bin/activate` | ||
|
||
Install the required libraries: `$ pip install -r requirements.txt` | ||
|
||
|
||
## Start the server | ||
|
||
`$ mkdocs serve` | ||
|
||
For more information access [mkdocs documentation](https://www.mkdocs.org/) and [material theme documentation](https://squidfunk.github.io/mkdocs-material/). |
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,2 @@ | ||
mkdocs==1.5.3 | ||
mkdocs-material==9.4.8 |