From 1ef6a9e348fbfd1b966ceb0e332e8f9bbf45ba0b Mon Sep 17 00:00:00 2001 From: Austin Akers Date: Sun, 4 Aug 2019 17:04:42 -0700 Subject: [PATCH 1/2] adding documentation to run branch locally --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..ec0a38a79 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Truffle Suite Website -https://www.truffleframework.com +## Clone Repo +``` +git clone https://github.com/BboyAkers/trufflesuite.github.io.git +``` + + +# How to run this repo locally +First: +[Visit Here for more info on http-server](https://www.npmjs.com/package/http-server) +``` +npm install http-server -g +``` +Once installed run in the base directory: +``` +http-server +``` +Navigate to **localhost:8080/** the port specified in your terminal and you have a working instance of it. + +## How to run Development locally +Visit [trufflesuite/trufflesuite.com](https://github.com/trufflesuite/trufflesuite.com) repo. \ No newline at end of file From 90f8388326b99f19634e0eb8e406a547c3078302 Mon Sep 17 00:00:00 2001 From: Austin Akers Date: Sun, 4 Aug 2019 17:17:50 -0700 Subject: [PATCH 2/2] updating url for cloning --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec0a38a79..ff170f682 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Truffle Suite Website -https://www.truffleframework.com ## Clone Repo ``` -git clone https://github.com/BboyAkers/trufflesuite.github.io.git +git clone https://github.com/trufflesuite/trufflesuite.github.io.git ```