-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added the instructions to setup working environment #72
Merged
Merged
Changes from 6 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2e9fd84
Added Instructions to setup environment
vngarg a77232f
Added the instructions to setup working environment
vngarg 5def848
Added the instructions to setup working environment
vngarg b6de2a7
Updated the SETUP WORKING ENVIRONMENT.md
vngarg 75abd4a
Added Animation to Water Tanks
vngarg 1cba47b
Merge branch 'master' of https://github.com/vngarg/Water-Monitoring-S…
vngarg 9dfadc8
Merge branch 'feature/frontend' into master
vngarg b8dcb6c
Deleted README
vngarg 2947952
Changes DOne
vngarg 3381ffe
Done
vngarg 7cf4ea6
Merge branch 'feature/frontend' into master
vngarg 98e90db
Merge branch 'feature/frontend' into master
vinitshahdeo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 successfully installed, run the following command in Terminal. This will display the version of Node installed.*** | ||
|
||
```bash | ||
node -v | ||
``` | ||
|
||
- ***You also need to install npm, run the following command in Terminal*** | ||
|
||
```bsah | ||
npm install | ||
``` | ||
|
||
- ***To check that npm has installed successfully, run this command in your Terminal. This will display the version of npm installed.*** | ||
|
||
```bash | ||
npm -v | ||
``` | ||
|
||
- ***Your Backend environment is all setup.*** | ||
|
||
## To setup FrontEnd using Reactjs- | ||
|
||
- ***You need to run below command to install React on your machine.*** | ||
|
||
```bash | ||
npm install -g create-react-app | ||
``` | ||
|
||
- ***React is installed. Now to create a working directory for React, follow below command*** | ||
|
||
```bash | ||
create-react-app <directory-name> | ||
``` | ||
- ***You have succesfully installed Reactjs for FrontEnd.*** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vngarg The PR should be issue-specific, I can see the changes for another issue (animation) here. Please remove the changes or create a fresh branch and raise a new PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok sir, I'll fix this ...
Also, please review my another PR for the animation #128