Updating URLs

This commit is contained in:
Richard Ramos 2018-08-20 14:51:01 -04:00
parent 8c612b715d
commit c3a29f4aa5
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
### Intro ### Intro
In this workshop, we'll explore how can we use Embark to simplify the development of a decentralised Reddit dApp (or DReddit). We will use the code-generated contract object, `DReddit`, and the `EmbarkJS` API to interact with our Ethereum smart contract and store image files on the decentralized filesystem `IPFS`. In this workshop, we'll explore how can we use Embark to simplify the development of a decentralised Reddit dApp (or DReddit). We will use the code-generated contract object, `DReddit`, and the `EmbarkJS` API to interact with our Ethereum smart contract and store image files on the decentralized filesystem `IPFS`.
The final code for this dApp can be found in the [DappCon Workshop dAppp repository](https://github.com/status-im/dappcon-workshop-dapp/blob/master/instructions/1%20Installation.md), however we be using the [`start-here` branch](https://github.com/status-im/dappcon-workshop-dapp/tree/start-here) as a starting point for our workshop. This branch contains some "missing" code that we will be adding together in this workshop. The final code for this dApp can be found in the [repository](https://github.com/status-im/dreddit-dapp/blob/master/instructions/1%20Installation.md), however we be using the [`start-here` branch](https://github.com/status-im/dreddit-dapp/tree/start-here) as a starting point for our workshop. This branch contains some "missing" code that we will be adding together in this workshop.
This dApp uses [React](https://reactjs.org/), but is out of scope for this workshop, so don't worry, we will only be focussing on the pieces that Embark helps us build. In reality, any JS framework can be used with Embark. This dApp uses [React](https://reactjs.org/), but is out of scope for this workshop, so don't worry, we will only be focussing on the pieces that Embark helps us build. In reality, any JS framework can be used with Embark.

View File

@ -8,7 +8,7 @@ We will leverage Embarks featureset to write our contract, write unit tests f
Clone the DReddit template into your dApp folder: Clone the DReddit template into your dApp folder:
``` ```
cd [parent folder] (ie ~/dev/__github) cd [parent folder] (ie ~/dev/__github)
git clone https://github.com/status-im/dappcon-workshop-dapp git clone https://github.com/status-im/dreddit-dapp
cd dappcon-workshop-dapp cd dappcon-workshop-dapp
git checkout start-here git checkout start-here
``` ```