-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
0 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
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,14 @@ | ||
$heroku login | ||
~faz login na conta da Heroku~ | ||
|
||
$git init && git add . && git commit -m "initial commit" | ||
~Comeca um novo repo no git. A heroku usa o git para fazer deploy ~ | ||
|
||
$heroku create | ||
~Cria uma nova aplicacao na heroku~ | ||
|
||
$git push heroku master | ||
~faz deploy da aplicacao~ | ||
|
||
$heroku open | ||
~Mostra a nova aplicacao~ |
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,2 @@ | ||
$ pv <temp.file> | mysql -u<user> -p<pass> <db-name> | ||
~Import dump file into a database and show the progress pipeline~ |