-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
a3e3c91
commit b0666e1
Showing
2 changed files
with
21 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Cutter Website | ||
|
||
### How to build | ||
|
||
1. Install `ruby` following [official guide](https://www.ruby-lang.org/en/documentation/installation/). | ||
2. Install essential build tools (`build-essential` for linux & `Xcode cmdline tools` for macOS). | ||
3. Clone this repo: | ||
|
||
`git clone --filter=blob:none https://github.com/rizinorg/cutter.re` | ||
4. Run the following: | ||
```sh | ||
cd cutter.re | ||
gem install bundler | ||
bundle install | ||
bundle exec jekyll serve | ||
``` | ||
If all goes right, you should be able to access the site at http://127.0.0.1:4000/ | ||
|
||
> [!NOTE] | ||
> [Cutter documentation](https://cutter.re/docs/) source resides in [cutter repo](https://github.com/rizinorg/cutter/tree/dev/docs) and can be built using [these instructions](https://cutter.re/docs/contributing/docs/building-docs.html) separately. |