Skip to content

Contribution

fumikito edited this page Feb 17, 2016 · 3 revisions

There are several contribution for OSS!

  • Star or rate this.
  • Write code.
  • Make issue.
  • Donation(unfortunately, we Japanese have no regal online method for donation).
  • Review.

How to send Pull Request

Any tagged master branch is production release.

To send pull request, just fork this repo and clone it. For example, fork this repo as your account-name/2ch repo. Then clone yours.

git clone git@github.com:account-name/2ch.git

Next, check out new branch, commit your patch and push it to github.

Then create pull request from github.com.

If you are unfamiliar with these things, please consider using GitHub Desktop.

Build

On github repository, required files are ignored by .gitignore. You have to build the missing files. Composer and npm is required.

# Go in to this directory.
cd path/to/this/dir
# Install composer.
composer install
# Install node modules.
npm install
# Build files.
npm run build
# Watch static files on development.
npm run watch
Clone this wiki locally