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
- Host: GitHub
- URL: https://github.com/minecraft-dev/mcdev.io
- Owner: minecraft-dev
- License: other
- Created: 2016-10-26T20:04:31.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2025-05-09T17:54:50.000Z (8 months ago)
- Last Synced: 2025-05-09T18:52:39.644Z (8 months ago)
- Language: SCSS
- Homepage: https://minecraftdev.org/
- Size: 3.13 MB
- Stars: 5
- Watchers: 4
- Forks: 17
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```