A PHP script to provide a "clothes generator" for your Minecraft server. You can find a working demo here:
- Web server (Nginx/Apache)
- PHP 5.5 support
- ImageMagick
- Clone this repository to your document root
- Make sure the web server is allowed to create/adjust files
- Point your browser to that document root
In case you want to help and contribute to the project you need to compile the assets with the assistence of Grunt:
- Make sure you've installed
node
andnpm
- Install Grunt, Bower and Linter and code checker:
npm install -g grunt-cli bower jshint jscs
- Install all dependencies:
npm install
- Install web libraries:
bower install
- Run grunt task to compile assets and start watching for local file changes:
grunt dev
If you want to commit your changes, exclude the dev
argument.
Caution: When using the dev
argument, Grunt won't minify your JS or CSS, so it's easier to debug. Once you run grunt
(without the dev
), the files are minified!
1.2.1