Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TuringLang/docs
Documentation and tutorials for the Turing language
https://github.com/TuringLang/docs
julia machine-learning probabilistic-programming turing-language
Last synced: 3 months ago
JSON representation
Documentation and tutorials for the Turing language
- Host: GitHub
- URL: https://github.com/TuringLang/docs
- Owner: TuringLang
- License: mit
- Created: 2018-08-13T16:03:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-28T14:01:26.000Z (4 months ago)
- Last Synced: 2024-07-29T13:30:15.450Z (4 months ago)
- Topics: julia, machine-learning, probabilistic-programming, turing-language
- Language: Shell
- Homepage: https://turinglang.org/docs/
- Size: 310 MB
- Stars: 225
- Watchers: 9
- Forks: 98
- Open Issues: 46
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Documentation and Tutorials for Turing.jl
This repository is part of [Turing.jl's](https://turinglang.org/) website (i.e. `https://turinglang.org/docs/`). It contains the Turing.jl documentation and tutorials.
- The `master` branch contains the quarto source
- The `gh-pages` branch contains the `html` version of these documents compiled from the `master` branch.To get started with the docs website locally, you'll need to have the following prerequisite installed:
- [Quarto](https://quarto.org/docs/download/)
Once you have the prerequisite installed, you can follow these steps:
1. Clone this repository:
```bash
git clone https://github.com/TuringLang/docs
```2. Navigate into the cloned directory:
```bash
cd docs
```3. Preview the website using Quarto Preview:
```bash
quarto preview
```
This will launch a local server at http://localhost:4200/, which you can view in your web browser by navigating to the link shown in your terminal.
Note: Avoid clicking links in the navbar while previewing locally because they will eventually lead to https links online!4. Render the website locally:
```bash
quarto render
```
This will render the full website in `_site` folder.It is also possible to render a single tutorial or `qmd` file without compiling the entire site. This is often helpful to speed up compilation when editing a single docs page. To do this, first `cd` to the file's folder, and run `quarto preview` or `quarto render`:
```
cd somedocs # This is the folder containing a docs `qmd` file.
quarto render index.qmd
```## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.