diff options
author | Fabio Berger <me@fabioberger.com> | 2018-03-09 21:10:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-09 21:10:56 +0800 |
commit | 42fce45585ee82b80cf3d6b866b2c294a7af8bf6 (patch) | |
tree | 8e3179eee1173cbd414f9e421952aa0944798c8d /packages/react-docs-example/README.md | |
parent | 51e4a7343993aa14bacfa04b66e5f798dfe709e2 (diff) | |
parent | 9da57daa7f9adfe0bdfd67f89c7ac8c496c8f8b7 (diff) | |
download | dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.tar dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.tar.gz dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.tar.bz2 dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.tar.lz dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.tar.xz dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.tar.zst dexon-sol-tools-42fce45585ee82b80cf3d6b866b2c294a7af8bf6.zip |
Merge pull request #443 from 0xProject/moveReactDocExample
Move `react-doc` example to separate sub-package
Diffstat (limited to 'packages/react-docs-example/README.md')
-rw-r--r-- | packages/react-docs-example/README.md | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/react-docs-example/README.md b/packages/react-docs-example/README.md new file mode 100644 index 000000000..7b2547b20 --- /dev/null +++ b/packages/react-docs-example/README.md @@ -0,0 +1,55 @@ +## @0xproject/react-docs-example + +An [example documentation page](http://react-docs-example.s3-website-us-east-1.amazonaws.com/) built using [react-docs](https://github.com/0xProject/0x-monorepo/tree/development/packages/react-docs) rendering the [@0xproject/web3-wrapper](https://github.com/0xProject/0x-monorepo/tree/development/packages/web3-wrapper) Typescript package. This is a great starter project for hosting your own Solidity or Typescript documentation page. + +## Usage + +This package is intended as a boilerplate for creating and hosting your own documentation page. Easiest way to get started is to fork the `0x-monorepo` and start modifying `react-docs-example`. + +#### Install Dependencies + +If you don't have yarn workspaces enabled (Yarn < v1.0) - enable them: + +```bash +yarn config set workspaces-experimental true +``` + +Then install dependencies + +```bash +yarn install +``` + +#### Start the dev server + +```bash +yarn dev +``` + +### Deploy Example to S3 bucket + +You will need to adapt the `deploy_example` command in the `package.json` to point to an S3 bucket you've created. Make sure the bucket is publicly accessible to everyone. + +You will also need to install the [aws-cli](https://github.com/aws/aws-cli) and configure it with your AWS credentials. + +```bash +yarn deploy_example +``` + +### Build + +```bash +yarn build +``` + +### Lint + +```bash +yarn lint +``` + +## Contributing + +We strongly encourage the community to help us make improvements. To report bugs within this package, please create an issue in this repository. + +Please read our [contribution guidelines](../../CONTRIBUTING.md) before getting started. |