-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from ariebrainware/master
Minor Update: Refactoring
- Loading branch information
Showing
6 changed files
with
23 additions
and
15 deletions.
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 |
---|---|---|
|
@@ -5,4 +5,6 @@ database/ | |
devnote | ||
.env | ||
.rar | ||
package-lock.json | ||
package-lock.json | ||
.travis/deploy_rsa.pub | ||
.travis/deploy_rsa |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
git config --global push.default simple # we only want to push one branch — master | ||
# specify the repo on the live server as a remote repo, and name it 'production' | ||
# <user> here is the separate user you created for deploying | ||
git remote add production ssh://[email protected]:1118/home/brainware/projects/connecc-api | ||
git push production master # push our updates |
Binary file not shown.
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 |
---|---|---|
|
@@ -123,7 +123,7 @@ Request body example: | |
```json | ||
{ | ||
"name": "Alpha", | ||
"phoneNumber": "+62-8-1993-101010", | ||
"phoneNumber": "+62-8-1234-56789", | ||
"email": "[email protected]", | ||
"address": "Alphabet Inc, USA" | ||
} | ||
|
Binary file not shown.