There are two way you can contribute to this project, adding your tiles to the pixel and making the html css js code better.
- Create a fork of this project
- Clone the project:
git clone https://github.com/<YOUR_GITHUB_USERNAME>/open connect-art.git
- cd open-connect-art
- open index.html in chrome browser
- Some entries in index.html page looks like
<img src="src/empty_cell.png" style="width:100%" title="UNCLAIMED_0_0_">
, Where_0_0
in the name suggests the location of the image in the grid - To contribute add you user name as title of the tile, add your image you want to use as tile from the
src/
folder and replace"src/empty_cell.png"
with your image.
- Once you are happy with the changes, create a branch so we can commit the changes.
git checkout -b add-my-tile
git add index.html
git commit -m "add my tile at _X_Y"
- Replace _X_Y with the x-coordinate and y-coordinate of your changed tile, e.g. (4, 27). This will create a new commit with the message add my tile at _4_27. The commit message is following the Conventional Commits Standard.
- First Sync
- Push
git push origin add-my-tile
- Use this Steps to create a pull request