Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 1.33 KB

CONTRIBUTING.md

File metadata and controls

45 lines (29 loc) · 1.33 KB

Contributing to BitcartCC Store

Welcome, and thank you for your interest in contributing to BitcartCC Store!

Our central contributing guidelines apply to all BitcartCC repositories.

Below are the instructions for setting up development environment with BitcartCC Store.

Setting up development environment

Some general advice can be found in our central contributing guidelines.

Installation instructions:

git clone https://github.com/<<<your-github-account>>>/bitcart-store.git
cd bitcart-store
yarn

To launch:

# serve with hot reload at localhost:3000
yarn dev

# build for production and launch server
yarn build
yarn start

From now on, development environment is ready.

Note: we use pre-commit hooks for development, you can install pre-commit and it's hooks like so:

curl https://pre-commit.com/install-local.py | python3 -
pre-commit install

Make sure to follow our coding guidelines when developing.

Thank You!

Your contributions to open source, large or small, make great projects like this possible. Thank you for taking the time to contribute.