From 2dd78421916b3b0d8e8b998ae1bb15a28cce5777 Mon Sep 17 00:00:00 2001 From: Amber Roy Date: Sun, 6 Mar 2016 12:09:33 -0800 Subject: [PATCH] Fix url used in git command - clone the user's fork, not original repo - add dir name so user can repeat for multiple scenes --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6c8214538..c589e3dcc 100644 --- a/README.md +++ b/README.md @@ -22,10 +22,10 @@ After you have __[downloaded and extracted this `.zip` file](https://github.com/ Alternatively, you can __[fork this repo](https://github.com/aframevr/aframe-boilerplate/fork)__ to get started, if you'd like to maintain a Git workflow. -After you have __[forked this repo](https://github.com/aframevr/aframe-boilerplate/fork)__, clone a copy of your fork locally and you'll be have your scene ready in these few steps: +After you have __[forked this repo](https://github.com/aframevr/aframe-boilerplate/fork)__, clone a copy of your fork locally and you'll have your scene ready in these few steps: - git clone https://github.com/aframevr/aframe-boilerplate.git - cd aframe-boilerplate && rm -rf .git && npm install && npm start + git clone https://github.com/your-username/aframe-boilerplate.git your-scene-name + cd your-scene-name && rm -rf .git && npm install && npm start open http://localhost:3000/ > :iphone: **Mobile pro tip:** Upon starting the development server, the URL will be logged to the console. Load that URL from a browser on your mobile device. (If your mobile phone and computer are not on the same LAN, consider using [ngrok](https://ngrok.com/) for local development and testing. [Browsersync](https://www.browsersync.io/) is also worth a gander.)