From 16185a3a2b95b2f09c28caa44a7e8917974d90ff Mon Sep 17 00:00:00 2001 From: Karl Kristiansen Date: Mon, 4 Jan 2021 10:20:45 +0100 Subject: [PATCH] Update readme.md, removing quotation marks on code For easier copy to terminal --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9f24fec..219e05a 100644 --- a/README.md +++ b/README.md @@ -9,16 +9,16 @@ https://medium.com/@leonardnguyen/etherchat-decentralized-messaging-application- # How to run You need to compile the smart contract first by executing: ``` -"node ./ethereum/compile.js" +node ./ethereum/compile.js ``` Then, you can run the app with: ``` -"npm run dev" +npm run dev ``` The web app will connect to the smart contract that I have already deployed. If you want to have your own smart contract on the ethereum network, you need to deploy it by yourself. Command for deploying the contract: ``` -"node ./ethereum/deploy.js" +node ./ethereum/deploy.js ``` # Official web app