Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.

Latest commit

 

History

History
27 lines (17 loc) · 1.22 KB

CONTRIBUTING.md

File metadata and controls

27 lines (17 loc) · 1.22 KB

How to Contribute

This project is essentially a declaration of one implementation of a Minecraft server farm (running on AWS EC2 virtual machines). Contributors to this project must consider this caveat since changes to this repository would have the effect of updating that one implementation.

How to report issues

Issues with the templates or scripts should be reported through the GitHub Issue tracker.

How to make changes

Contributions should be proposed through pull requests from forked repositories:

  1. Fork the repository

  2. Install the dependencies: npm install

  3. Create a feature branch: git checkout -b my-proposed-feature

  4. Make your changes and validate them:

     $ npm run build
     $ npm run lint
     $ npm run test
    
  5. Commit your changes and push to remote branch:

     $ git commit -am "add my feature"
     $ git push origin my-proposed-feature
    
  6. Create a pull request back to main branch in original repo