Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/steveklabnik/jujutsu-tutorial
trying to figure out this jujutsu thing
https://github.com/steveklabnik/jujutsu-tutorial
Last synced: 4 days ago
JSON representation
trying to figure out this jujutsu thing
- Host: GitHub
- URL: https://github.com/steveklabnik/jujutsu-tutorial
- Owner: steveklabnik
- Created: 2024-02-03T12:45:34.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-12-03T18:12:18.000Z (20 days ago)
- Last Synced: 2024-12-16T22:48:39.836Z (7 days ago)
- Homepage: https://steveklabnik.github.io/jujutsu-tutorial/
- Size: 815 KB
- Stars: 113
- Watchers: 25
- Forks: 26
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Steve's Jujutsu tutorial
[Read it here](https://steveklabnik.github.io/jujutsu-tutorial/).
## Requirements
Building the book requires [mdBook]. To get it:
[mdBook]: https://github.com/rust-lang/mdBook
```bash
$ cargo install mdbook
```Or you can also install via Homebrew:
```bash
$ brew install mdbook
```## Building
To build the book, type:
```bash
$ mdbook build
```The output will be in the `book` subdirectory. To check it out, open it in
your web browser._Firefox:_
```bash
$ firefox book/index.html # Linux
$ open -a "Firefox" book/index.html # OS X
$ Start-Process "firefox.exe" .\book\index.html # Windows (PowerShell)
$ start firefox.exe .\book\index.html # Windows (Cmd)
```_Chrome:_
```bash
$ google-chrome book/index.html # Linux
$ open -a "Google Chrome" book/index.html # OS X
$ Start-Process "chrome.exe" .\book\index.html # Windows (PowerShell)
$ start chrome.exe .\book\index.html # Windows (Cmd)
```