An open API service indexing awesome lists of open source software.

https://github.com/minecraft-dev/mcdev.io

Website for the minecraft-dev organization
https://github.com/minecraft-dev/mcdev.io

Last synced: 3 months ago
JSON representation

Website for the minecraft-dev organization

Awesome Lists containing this project

README

          

# Minecraft Development IntelliJ Site

Based on the [intellij-rust plugin site](https://github.com/intellij-rust/intellij-rust.github.io).

## Local development

Install [Ruby](https://www.ruby-lang.org) and [Bundler](http://bundler.io/).
There is `.ruby-version` file for [rbenv](https://github.com/rbenv/rbenv) if you like.
You will probably need GCC, Make, AutoConf and NodeJS installed.

```bash
$ bundle install
$ bundle exec jekyll serve
```

### Windows

If you are using Windows, it's better not to fight with Ruby Installer. I use WSL and works
pretty flawlessly, except file change watching (see
[tracking issue](https://github.com/Microsoft/BashOnWindows/issues/216)). So you'll have to run
this instead:

```bash
$ bundle exec jekyll serve --no-watch
```

To workaround lack of watching, you can do:

```bash
$ bundle exec jekyll serve --detach
$ while (bundle exec jekyll build --incremental); do sleep 5; done
```