server ip: server-ip password: password user: root
using SSh command: -> ssh root@server-ip then it will asked for password like bellow root@server-ip's password: write password and press enter
How to install mobx in create-react-app | |
1) Run create-react-app. | |
2) Run npm run eject. | |
3) Run npm install --saveDev babel-plugin-transform-decorators-legacy. | |
4) Open package.json, find the "babel" section (line 78 for me), and add 4 lines so it looks like this: |
server ip: server-ip password: password user: root
using SSh command: -> ssh root@server-ip then it will asked for password like bellow root@server-ip's password: write password and press enter
Suppose we have the following document in users_exams collection: | |
{ | |
"answers" : [ | |
{ | |
"auto_score" : 0, | |
"question_id" : "579733a97e6b58a0616b2c55", | |
"user_answers" : "na", | |
"isCorrect" : false, |
git checkout -b [new-branch-name]
Example: we want to create new branch named: new-branch-1
git checkout -b new-branch-1