-
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.
Merge pull request #49 from linea-it/dev
Update README.md
- Loading branch information
Showing
1 changed file
with
22 additions
and
2 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 |
---|---|---|
|
@@ -2,15 +2,35 @@ | |
|
||
This repository is a fork of NERSC Documentation at [docs.nersc.gov](https://docs.nersc.gov). | ||
|
||
This repository contains LIneA [documentation](https://docs.linea.org.br/) written in Markdown which is converted to html/css/js with the [mkdocs](http://www.mkdocs.org) static site generator. The theme is [mkdocs-material](https://github.com/squidfunk/mkdocs-material) with NERSC customizations such as the colors injected via selective overloading of | ||
templates and CSS. The documentation pages are found in the top-level folder `docs`. | ||
This repository contains LIneA [documentation](https://docs.linea.org.br/) written in Markdown which is converted to html/css/js with the [mkdocs](http://www.mkdocs.org) static site generator. The theme is [mkdocs-material](https://github.com/squidfunk/mkdocs-material) with LIneA customizations such as the colors injected via selective overloading of templates and CSS. The documentation pages are found in the top-level folder `docs`. | ||
|
||
# Reporting Issues | ||
|
||
To report a problem with our documentation please create an [issue](https://github.com/linea-it/docs/issues/new/choose) and someone will work on your task. Before you create a ticket, please check if there is an existing issue for the same problem to avoid duplicate issues. | ||
|
||
If you need any further assistance send an email to `[email protected]`. | ||
|
||
# How to build the documentation | ||
|
||
``` | ||
git clone https://github.com/linea-it/docs/ | ||
cd docs | ||
apt-get install python-pip python3.10-venv | ||
python3 -m venv mkdocs | ||
source mkdocs/bin/activate | ||
pip install -r requirements.txt | ||
``` | ||
|
||
To run a local server using mkdocs: | ||
|
||
``` | ||
cd docs | ||
source mkdocs/bin/activate | ||
mkdocs serve | ||
``` | ||
|
||
|
||
# License | ||
|
||
This repository is licensed under the BSD 3-Clause. For more details, see [LICENSE](https://github.com/linea-it/docs/blob/main/LICENSE). |