Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.47 KB | None | 0 0
  1. meni@meni-VirtualBox:~$ cd odin_on_rails
  2. meni@meni-VirtualBox:~/odin_on_rails$ cd my_first_rails_app
  3. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git init
  4. Reinitialized existing Git repository in /home/meni/odin_on_rails/my_first_rails_app/.git/
  5. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
  6. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m "initial commit"
  7. On branch master
  8. Your branch is up to date with 'origin/master'.
  9.  
  10. nothing to commit, working tree clean
  11. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote add origin mykey
  12. fatal: remote origin already exists.
  13. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push -u origin master
  14. Warning: Permanently added the RSA host key for IP address '192.30.253.112' to the list of known hosts.
  15. Branch 'master' set up to track remote branch 'master' from 'origin'.
  16. Everything up-to-date
  17. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ curl https://cli-assets.heroku.com/install.sh | sh
  18. % Total % Received % Xferd Average Speed Time Time Time Current
  19. Dload Upload Total Spent Left Speed
  20. 100 1892 100 1892 0 0 3384 0 --:--:-- --:--:-- --:--:-- 3384
  21. This script requires superuser access.
  22. You will be prompted for your password by sudo.
  23.  
  24. [sudo] password for meni:
  25. Sorry, try again.
  26. [sudo] password for meni:
  27. Installing CLI from https://cli-assets.heroku.com/heroku-linux-x64.tar.xz
  28. % Total % Received % Xferd Average Speed Time Time Time Current
  29. Dload Upload Total Spent Left Speed
  30. 100 16.2M 100 16.2M 0 0 833k 0 0:00:19 0:00:19 --:--:-- 1274k
  31. v11.9.0
  32. heroku installed to /usr/local/bin/heroku
  33. heroku/7.22.0 linux-x64 node-v11.9.0
  34. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku version
  35. heroku/7.22.0 linux-x64 node-v11.9.0
  36. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku keys:add
  37. Found an SSH public key at /home/meni/.ssh/id_rsa.pub
  38. ? Would you like to upload it to Heroku? Yes
  39. Uploading /home/meni/.ssh/id_rsa.pub SSH key... done
  40. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku create
  41. Creating app... done, ⬢ damp-falls-81953
  42. https://damp-falls-81953.herokuapp.com/ | https://git.heroku.com/damp-falls-81953.git
  43. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote show
  44. heroku
  45. origin
  46. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ code Gemfile
  47. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install --without production
  48. The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`.
  49. Using rake 12.3.2
  50. Using concurrent-ruby 1.1.4
  51. Using i18n 1.5.3
  52. Using minitest 5.11.3
  53. Using thread_safe 0.3.6
  54. Using tzinfo 1.2.5
  55. Using activesupport 5.2.2
  56. Using builder 3.2.3
  57. Using erubi 1.8.0
  58. Using mini_portile2 2.4.0
  59. Using nokogiri 1.10.1
  60. Using rails-dom-testing 2.0.3
  61. Using crass 1.0.4
  62. Using loofah 2.2.3
  63. Using rails-html-sanitizer 1.0.4
  64. Using actionview 5.2.2
  65. Using rack 2.0.6
  66. Using rack-test 1.1.0
  67. Using actionpack 5.2.2
  68. Using nio4r 2.3.1
  69. Using websocket-extensions 0.1.3
  70. Using websocket-driver 0.7.0
  71. Using actioncable 5.2.2
  72. Using globalid 0.4.2
  73. Using activejob 5.2.2
  74. Using mini_mime 1.0.1
  75. Using mail 2.7.1
  76. Using actionmailer 5.2.2
  77. Using activemodel 5.2.2
  78. Using arel 9.0.0
  79. Using activerecord 5.2.2
  80. Using mimemagic 0.3.3
  81. Using marcel 0.3.3
  82. Using activestorage 5.2.2
  83. Using public_suffix 3.0.3
  84. Using addressable 2.6.0
  85. Using io-like 0.3.0
  86. Using archive-zip 0.11.0
  87. Using bindex 0.5.0
  88. Using msgpack 1.2.6
  89. Using bootsnap 1.4.0
  90. Using bundler 1.17.2
  91. Using byebug 11.0.0
  92. Using regexp_parser 1.3.0
  93. Using xpath 3.2.0
  94. Using capybara 3.13.2
  95. Using ffi 1.10.0
  96. Using childprocess 0.9.0
  97. Using chromedriver-helper 2.1.0
  98. Using coffee-script-source 1.12.2
  99. Using execjs 2.7.0
  100. Using coffee-script 2.4.1
  101. Using method_source 0.9.2
  102. Using thor 0.20.3
  103. Using railties 5.2.2
  104. Using coffee-rails 4.2.2
  105. Using multi_json 1.13.1
  106. Using jbuilder 2.8.0
  107. Using rb-fsevent 0.10.3
  108. Using rb-inotify 0.10.0
  109. Using ruby_dep 1.5.0
  110. Using listen 3.1.5
  111. Using puma 3.12.0
  112. Using sprockets 3.7.2
  113. Using sprockets-rails 3.2.1
  114. Using rails 5.2.2
  115. Using rubyzip 1.2.2
  116. Using sass-listen 4.0.0
  117. Using sass 3.7.3
  118. Using tilt 2.0.9
  119. Using sass-rails 5.0.7
  120. Using selenium-webdriver 3.141.0
  121. Using spring 2.0.2
  122. Using spring-watcher-listen 2.0.1
  123. Using sqlite3 1.3.13
  124. Using turbolinks-source 5.2.0
  125. Using turbolinks 5.2.0
  126. Using uglifier 4.1.20
  127. Using web-console 3.7.0
  128. Bundle complete! 19 Gemfile dependencies, 79 gems now installed.
  129. Gems in the group production were not installed.
  130. Use `bundle info [gemname]` to see where a bundled gem is installed.
  131. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ code .
  132. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git status
  133. On branch master
  134. Your branch is up to date with 'origin/master'.
  135.  
  136. Changes not staged for commit:
  137. (use "git add <file>..." to update what will be committed)
  138. (use "git checkout -- <file>..." to discard changes in working directory)
  139.  
  140. modified: Gemfile
  141.  
  142. no changes added to commit (use "git add" and/or "git commit -a")
  143. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
  144. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m 'updates for heroku deployment'
  145. [master c670c31] updates for heroku deployment
  146. 1 file changed, 1 insertion(+)
  147. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push origin master
  148. Counting objects: 3, done.
  149. Delta compression using up to 2 threads.
  150. Compressing objects: 100% (3/3), done.
  151. Writing objects: 100% (3/3), 308 bytes | 25.00 KiB/s, done.
  152. Total 3 (delta 2), reused 0 (delta 0)
  153. remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
  154. To github.com:TheMelpo/my_first_rails_app.git
  155. ed76e62..c670c31 master -> master
  156. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push heroku master
  157.  
  158. ! Your account themelpo@gmail.com does not have access to appname.
  159. !
  160. ! SSH Key Fingerprint: bd:a3:89:37:7c:32:ef:7e:4b:d4:ad:24:85:17:e0:ad
  161.  
  162. fatal: Could not read from remote repository.
  163.  
  164. Please make sure you have the correct access rights
  165. and the repository exists.
  166. meni@meni-VirtualBox:~/odin_on_rails/my_first_rails_app$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement