From 2e9fd84c9b8d0bdda2bcc163b2a70319358445da Mon Sep 17 00:00:00 2001 From: vngarg Date: Sun, 1 Mar 2020 17:35:15 +0530 Subject: [PATCH 1/7] Added Instructions to setup environment --- SETUP WORKING ENVIRONMENT.md | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 SETUP WORKING ENVIRONMENT.md diff --git a/SETUP WORKING ENVIRONMENT.md b/SETUP WORKING ENVIRONMENT.md new file mode 100644 index 00000000..b027f07c --- /dev/null +++ b/SETUP WORKING ENVIRONMENT.md @@ -0,0 +1,39 @@ +#HOW TO SETUP WORKING ENVIRONMENT ON YOUR LOCAL MACHINE + +##To setup Backend using Nodejs- +- ***Firstly install Node on your machine, [click here](https://nodejs.org/en/).*** +-***To check that NOde has succesfully installed, run the following command in Terminal. Yhis will display the version of Node installed.*** + +```js +node -v +``` + +- ***You also need to install npm, run the following command in Terminal *** + +```js +npm install +``` + +-***To chack that npm has installed succesfully, run this command in your Terminal. This will display the version of npm istalled.*** + +```js +npm -v +``` + +-***Your Backend environment is all setup.*** + +##To setup Backend using Reactjs- + +-***You need to below command to install React on your machine.*** + +```js +npm install -g create-react-app +``` + +-***React is installed. Now to create a working directory for React, follow below command*** + +```js +create-react-app +``` +-***You have succesfully installed Reactjs for FrontEnd.*** + From a77232f199ac09272706a28456ff9b97d14d734f Mon Sep 17 00:00:00 2001 From: vngarg Date: Sun, 1 Mar 2020 17:39:14 +0530 Subject: [PATCH 2/7] Added the instructions to setup working environment --- SETUP WORKING ENVIRONMENT.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/SETUP WORKING ENVIRONMENT.md b/SETUP WORKING ENVIRONMENT.md index b027f07c..f5629bd1 100644 --- a/SETUP WORKING ENVIRONMENT.md +++ b/SETUP WORKING ENVIRONMENT.md @@ -1,20 +1,20 @@ -#HOW TO SETUP WORKING ENVIRONMENT ON YOUR LOCAL MACHINE +# HOW TO SETUP WORKING ENVIRONMENT ON YOUR LOCAL MACHINE -##To setup Backend using Nodejs- +## To setup Backend using Nodejs- - ***Firstly install Node on your machine, [click here](https://nodejs.org/en/).*** --***To check that NOde has succesfully installed, run the following command in Terminal. Yhis will display the version of Node installed.*** +-***To check that Node has successfully installed, run the following command in Terminal. This will display the version of Node installed.*** ```js node -v ``` -- ***You also need to install npm, run the following command in Terminal *** +-***You also need to install npm, run the following command in Terminal *** ```js npm install ``` --***To chack that npm has installed succesfully, run this command in your Terminal. This will display the version of npm istalled.*** +-***To check that npm has installed successfully, run this command in your Terminal. This will display the version of npm installed.*** ```js npm -v @@ -22,9 +22,9 @@ npm -v -***Your Backend environment is all setup.*** -##To setup Backend using Reactjs- +## To setup FrontEnd using Reactjs- --***You need to below command to install React on your machine.*** +-***You need to run below command to install React on your machine.*** ```js npm install -g create-react-app From 5def8481aa1b2dc6e1af2ee015019b02a1ddbc5f Mon Sep 17 00:00:00 2001 From: vngarg Date: Sun, 1 Mar 2020 17:40:30 +0530 Subject: [PATCH 3/7] Added the instructions to setup working environment --- SETUP WORKING ENVIRONMENT.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/SETUP WORKING ENVIRONMENT.md b/SETUP WORKING ENVIRONMENT.md index f5629bd1..f63cacd0 100644 --- a/SETUP WORKING ENVIRONMENT.md +++ b/SETUP WORKING ENVIRONMENT.md @@ -8,32 +8,32 @@ node -v ``` --***You also need to install npm, run the following command in Terminal *** +- ***You also need to install npm, run the following command in Terminal*** ```js npm install ``` --***To check that npm has installed successfully, run this command in your Terminal. This will display the version of npm installed.*** +- ***To check that npm has installed successfully, run this command in your Terminal. This will display the version of npm installed.*** ```js npm -v ``` --***Your Backend environment is all setup.*** +- ***Your Backend environment is all setup.*** ## To setup FrontEnd using Reactjs- --***You need to run below command to install React on your machine.*** +- ***You need to run below command to install React on your machine.*** ```js npm install -g create-react-app ``` --***React is installed. Now to create a working directory for React, follow below command*** +- ***React is installed. Now to create a working directory for React, follow below command*** ```js create-react-app ``` --***You have succesfully installed Reactjs for FrontEnd.*** +- ***You have succesfully installed Reactjs for FrontEnd.*** From b6de2a743779f817aa800965b1a5fea6da7ddcf9 Mon Sep 17 00:00:00 2001 From: "S.G" <49458871+vngarg@users.noreply.github.com> Date: Mon, 2 Mar 2020 19:03:32 +0530 Subject: [PATCH 4/7] Updated the SETUP WORKING ENVIRONMENT.md I had updated the changes needed. --- SETUP WORKING ENVIRONMENT.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/SETUP WORKING ENVIRONMENT.md b/SETUP WORKING ENVIRONMENT.md index f63cacd0..2eb2ff38 100644 --- a/SETUP WORKING ENVIRONMENT.md +++ b/SETUP WORKING ENVIRONMENT.md @@ -4,19 +4,19 @@ - ***Firstly install Node on your machine, [click here](https://nodejs.org/en/).*** -***To check that Node has successfully installed, run the following command in Terminal. This will display the version of Node installed.*** -```js +```bash node -v ``` - ***You also need to install npm, run the following command in Terminal*** -```js +```bsah npm install ``` - ***To check that npm has installed successfully, run this command in your Terminal. This will display the version of npm installed.*** -```js +```bash npm -v ``` @@ -26,13 +26,13 @@ npm -v - ***You need to run below command to install React on your machine.*** -```js +```bash npm install -g create-react-app ``` - ***React is installed. Now to create a working directory for React, follow below command*** -```js +```bash create-react-app ``` - ***You have succesfully installed Reactjs for FrontEnd.*** From 75abd4a7680dcc99e5fc5225c2432284e79011d1 Mon Sep 17 00:00:00 2001 From: vngarg Date: Tue, 3 Mar 2020 03:47:41 +0530 Subject: [PATCH 5/7] Added Animation to Water Tanks --- SETUP WORKING ENVIRONMENT.md | 2 +- src/demo.html | 68 +++++++++++++++++++++++---------- src/home.html | 74 +++++++++++++++++++++++++++++++++--- 3 files changed, 118 insertions(+), 26 deletions(-) diff --git a/SETUP WORKING ENVIRONMENT.md b/SETUP WORKING ENVIRONMENT.md index f63cacd0..a8273fd1 100644 --- a/SETUP WORKING ENVIRONMENT.md +++ b/SETUP WORKING ENVIRONMENT.md @@ -2,7 +2,7 @@ ## To setup Backend using Nodejs- - ***Firstly install Node on your machine, [click here](https://nodejs.org/en/).*** --***To check that Node has successfully installed, run the following command in Terminal. This will display the version of Node installed.*** +- ***To check that Node has successfully installed, run the following command in Terminal. This will display the version of Node installed.*** ```js node -v diff --git a/src/demo.html b/src/demo.html index 45f49e11..0fc13c9a 100644 --- a/src/demo.html +++ b/src/demo.html @@ -25,46 +25,74 @@

Water Tanks

-
-
+
+
+ + - -