elenderg

Untitled

Feb 16th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 24.16 KB | None | 0 0
  1. elender@elender-VirtualBox:~$ pwd
  2. /home/elender
  3. elender@elender-VirtualBox:~$ cd /home/you/odin_on_rails/my_first_rails_app
  4. bash: cd: /home/you/odin_on_rails/my_first_rails_app: No such file or directory
  5. elender@elender-VirtualBox:~$ cd /home/elender/odin_on_rails/my_first_rails_app
  6. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git init
  7. Reinitialized existing Git repository in /home/elender/odin_on_rails/my_first_rails_app/.git/
  8. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add
  9. Nothing specified, nothing added.
  10. Maybe you wanted to say 'git add .'?
  11. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
  12. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m "initial commit"
  13. [master (root-commit) e0bb9fe] initial commit
  14.  80 files changed, 1262 insertions(+)
  15.  create mode 100644 .gitignore
  16.  create mode 100644 .ruby-version
  17.  create mode 100644 Gemfile
  18.  create mode 100644 Gemfile.lock
  19.  create mode 100644 README.md
  20.  create mode 100644 Rakefile
  21.  create mode 100644 app/assets/config/manifest.js
  22.  create mode 100644 app/assets/images/.keep
  23.  create mode 100644 app/assets/javascripts/application.js
  24.  create mode 100644 app/assets/javascripts/cable.js
  25.  create mode 100644 app/assets/javascripts/channels/.keep
  26.  create mode 100644 app/assets/stylesheets/application.css
  27.  create mode 100644 app/channels/application_cable/channel.rb
  28.  create mode 100644 app/channels/application_cable/connection.rb
  29.  create mode 100644 app/controllers/application_controller.rb
  30.  create mode 100644 app/controllers/concerns/.keep
  31.  create mode 100644 app/helpers/application_helper.rb
  32.  create mode 100644 app/jobs/application_job.rb
  33.  create mode 100644 app/mailers/application_mailer.rb
  34.  create mode 100644 app/models/application_record.rb
  35.  create mode 100644 app/models/concerns/.keep
  36.  create mode 100644 app/views/layouts/application.html.erb
  37.  create mode 100644 app/views/layouts/mailer.html.erb
  38.  create mode 100644 app/views/layouts/mailer.text.erb
  39.  create mode 100755 bin/bundle
  40.  create mode 100755 bin/rails
  41.  create mode 100755 bin/rake
  42.  create mode 100755 bin/setup
  43.  create mode 100755 bin/spring
  44.  create mode 100755 bin/update
  45.  create mode 100755 bin/yarn
  46.  create mode 100644 config.ru
  47.  create mode 100644 config/application.rb
  48.  create mode 100644 config/boot.rb
  49.  create mode 100644 config/cable.yml
  50.  create mode 100644 config/credentials.yml.enc
  51.  create mode 100644 config/database.yml
  52.  create mode 100644 config/environment.rb
  53.  create mode 100644 config/environments/development.rb
  54.  create mode 100644 config/environments/production.rb
  55.  create mode 100644 config/environments/test.rb
  56.  create mode 100644 config/initializers/application_controller_renderer.rb
  57.  create mode 100644 config/initializers/assets.rb
  58.  create mode 100644 config/initializers/backtrace_silencers.rb
  59.  create mode 100644 config/initializers/content_security_policy.rb
  60.  create mode 100644 config/initializers/cookies_serializer.rb
  61.  create mode 100644 config/initializers/filter_parameter_logging.rb
  62.  create mode 100644 config/initializers/inflections.rb
  63.  create mode 100644 config/initializers/mime_types.rb
  64.  create mode 100644 config/initializers/wrap_parameters.rb
  65.  create mode 100644 config/locales/en.yml
  66.  create mode 100644 config/puma.rb
  67.  create mode 100644 config/routes.rb
  68.  create mode 100644 config/spring.rb
  69.  create mode 100644 config/storage.yml
  70.  create mode 100644 db/seeds.rb
  71.  create mode 100644 lib/assets/.keep
  72.  create mode 100644 lib/tasks/.keep
  73.  create mode 100644 log/.keep
  74.  create mode 100644 package.json
  75.  create mode 100644 public/404.html
  76.  create mode 100644 public/422.html
  77.  create mode 100644 public/500.html
  78.  create mode 100644 public/apple-touch-icon-precomposed.png
  79.  create mode 100644 public/apple-touch-icon.png
  80.  create mode 100644 public/favicon.ico
  81.  create mode 100644 public/robots.txt
  82.  create mode 100644 storage/.keep
  83.  create mode 100644 test/application_system_test_case.rb
  84.  create mode 100644 test/controllers/.keep
  85.  create mode 100644 test/fixtures/.keep
  86.  create mode 100644 test/fixtures/files/.keep
  87.  create mode 100644 test/helpers/.keep
  88.  create mode 100644 test/integration/.keep
  89.  create mode 100644 test/mailers/.keep
  90.  create mode 100644 test/models/.keep
  91.  create mode 100644 test/system/.keep
  92.  create mode 100644 test/test_helper.rb
  93.  create mode 100644 tmp/.keep
  94.  create mode 100644 vendor/.keep
  95. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote add origin git@github.com:elenderg/my_first_rails_app.git
  96. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push -u origin master
  97. The authenticity of host 'github.com (192.30.253.112)' can't be established.
  98. RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
  99. Are you sure you want to continue connecting (yes/no)? yes
  100. Warning: Permanently added 'github.com,192.30.253.112' (RSA) to the list of known hosts.
  101. Counting objects: 87, done.
  102. Delta compression using up to 4 threads.
  103. Compressing objects: 100% (72/72), done.
  104. Writing objects: 100% (87/87), 21.67 KiB | 2.71 MiB/s, done.
  105. Total 87 (delta 2), reused 0 (delta 0)
  106. remote: Resolving deltas: 100% (2/2), done.
  107. To github.com:elenderg/my_first_rails_app.git
  108. * [new branch]      master -> master
  109. Branch 'master' set up to track remote branch 'master' from 'origin'.
  110. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ curl https://cli-assets.heroku.com/install.sh | sh
  111.  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
  112.                                 Dload  Upload   Total   Spent    Left  Speed
  113. 100  1892  100  1892    0     0   2845      0 --:--:-- --:--:-- --:--:--  2840
  114. This script requires superuser access.
  115. You will be prompted for your password by sudo.
  116. [sudo] password for elender:
  117. Installing CLI from https://cli-assets.heroku.com/heroku-linux-x64.tar.xz
  118.  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
  119.                                 Dload  Upload   Total   Spent    Left  Speed
  120. 100 16.7M  100 16.7M    0     0  1558k      0  0:00:11  0:00:11 --:--:-- 1619k
  121. v11.9.0
  122. heroku installed to /usr/local/bin/heroku
  123. heroku/7.21.0 linux-x64 node-v11.9.0
  124. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku version
  125. heroku/7.21.0 linux-x64 node-v11.9.0
  126. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku keys:add
  127. Found an SSH public key at /home/elender/.ssh/id_rsa.pub
  128. ? Would you like to upload it to Heroku? Yes
  129. Uploading /home/elender/.ssh/id_rsa.pub SSH key... !
  130. ▸    Invalid credentials provided.
  131. heroku: Press any key to open up the browser to login or q to exit:
  132. Logging in... done
  133. Logged in as [email protected]
  134. Found an SSH public key at /home/elender/.ssh/id_rsa.pub
  135. ? Would you like to upload it to Heroku? Yes
  136. Uploading /home/elender/.ssh/id_rsa.pub SSH key... done
  137. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku create
  138. Creating app... done, ⬢ pure-hamlet-38636
  139. https://pure-hamlet-38636.herokuapp.com/ | https://git.heroku.com/pure-hamlet-38636.git
  140. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git remote show
  141. heroku
  142. origin
  143. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ ls
  144. app     config.ru  Gemfile.lock  package.json  README.md  tmp
  145. bin     db         lib           public        storage    vendor
  146. config  Gemfile    log           Rakefile      test
  147. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ code .
  148. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ bundle install --without production
  149. 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`.
  150. Fetching gem metadata from https://rubygems.org/.............
  151. Fetching gem metadata from https://rubygems.org/..
  152. Resolving dependencies...
  153. Using rake 12.3.2
  154. Using concurrent-ruby 1.1.4
  155. Using i18n 1.5.3
  156. Using minitest 5.11.3
  157. Using thread_safe 0.3.6
  158. Using tzinfo 1.2.5
  159. Using activesupport 5.2.2
  160. Using builder 3.2.3
  161. Using erubi 1.8.0
  162. Using mini_portile2 2.4.0
  163. Using nokogiri 1.10.1
  164. Using rails-dom-testing 2.0.3
  165. Using crass 1.0.4
  166. Using loofah 2.2.3
  167. Using rails-html-sanitizer 1.0.4
  168. Using actionview 5.2.2
  169. Using rack 2.0.6
  170. Using rack-test 1.1.0
  171. Using actionpack 5.2.2
  172. Using nio4r 2.3.1
  173. Using websocket-extensions 0.1.3
  174. Using websocket-driver 0.7.0
  175. Using actioncable 5.2.2
  176. Using globalid 0.4.2
  177. Using activejob 5.2.2
  178. Using mini_mime 1.0.1
  179. Using mail 2.7.1
  180. Using actionmailer 5.2.2
  181. Using activemodel 5.2.2
  182. Using arel 9.0.0
  183. Using activerecord 5.2.2
  184. Using mimemagic 0.3.3
  185. Using marcel 0.3.3
  186. Using activestorage 5.2.2
  187. Using public_suffix 3.0.3
  188. Using addressable 2.6.0
  189. Using io-like 0.3.0
  190. Using archive-zip 0.11.0
  191. Using bindex 0.5.0
  192. Using msgpack 1.2.6
  193. Using bootsnap 1.4.0
  194. Using bundler 1.17.2
  195. Using byebug 11.0.0
  196. Using regexp_parser 1.3.0
  197. Using xpath 3.2.0
  198. Using capybara 3.13.2
  199. Using ffi 1.10.0
  200. Using childprocess 0.9.0
  201. Using chromedriver-helper 2.1.0
  202. Using coffee-script-source 1.12.2
  203. Using execjs 2.7.0
  204. Using coffee-script 2.4.1
  205. Using method_source 0.9.2
  206. Using thor 0.20.3
  207. Using railties 5.2.2
  208. Using coffee-rails 4.2.2
  209. Using multi_json 1.13.1
  210. Using jbuilder 2.8.0
  211. Using rb-fsevent 0.10.3
  212. Using rb-inotify 0.10.0
  213. Using ruby_dep 1.5.0
  214. Using listen 3.1.5
  215. Using puma 3.12.0
  216. Using sprockets 3.7.2
  217. Using sprockets-rails 3.2.1
  218. Using rails 5.2.2
  219. Using rubyzip 1.2.2
  220. Using sass-listen 4.0.0
  221. Using sass 3.7.3
  222. Using tilt 2.0.9
  223. Using sass-rails 5.0.7
  224. Using selenium-webdriver 3.141.0
  225. Using spring 2.0.2
  226. Using spring-watcher-listen 2.0.1
  227. Fetching sqlite3 1.3.13 (was 1.4.0)
  228. Installing sqlite3 1.3.13 (was 1.4.0) with native extensions
  229. Using turbolinks-source 5.2.0
  230. Using turbolinks 5.2.0
  231. Using uglifier 4.1.20
  232. Using web-console 3.7.0
  233. Bundle complete! 19 Gemfile dependencies, 79 gems now installed.
  234. Gems in the group production were not installed.
  235. Use `bundle info [gemname]` to see where a bundled gem is installed.
  236. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git status
  237. On branch master
  238. Your branch is up to date with 'origin/master'.
  239.  
  240. Changes not staged for commit:
  241.  (use "git add <file>..." to update what will be committed)
  242.  (use "git checkout -- <file>..." to discard changes in working directory)
  243.  
  244.     modified:   Gemfile
  245.     modified:   Gemfile.lock
  246.     modified:   config/routes.rb
  247.  
  248. no changes added to commit (use "git add" and/or "git commit -a")
  249. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git add .
  250. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git commit -m 'updates for heroku deployment'
  251. [master e031888] updates for heroku deployment
  252. 3 files changed, 14 insertions(+), 4 deletions(-)
  253. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push origin master
  254. Counting objects: 6, done.
  255. Delta compression using up to 4 threads.
  256. Compressing objects: 100% (6/6), done.
  257. Writing objects: 100% (6/6), 656 bytes | 656.00 KiB/s, done.
  258. Total 6 (delta 5), reused 0 (delta 0)
  259. remote: Resolving deltas: 100% (5/5), completed with 5 local objects.
  260. To github.com:elenderg/my_first_rails_app.git
  261.   e0bb9fe..e031888  master -> master
  262. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ git push heroku master
  263. Counting objects: 93, done.
  264. Delta compression using up to 4 threads.
  265. Compressing objects: 100% (78/78), done.
  266. Writing objects: 100% (93/93), 22.14 KiB | 1.84 MiB/s, done.
  267. Total 93 (delta 7), reused 0 (delta 0)
  268. remote: Compressing source files... done.
  269. remote: Building source:
  270. remote:
  271. remote:  !     Warning: Multiple default buildpacks reported the ability to handle this app. The first buildpack in the list below will be used.
  272. remote:             Detected buildpacks: Ruby,Node.js
  273. remote:             See https://devcenter.heroku.com/articles/buildpacks#buildpack-detect-order
  274. remote: -----> Ruby app detected
  275. remote: -----> Compiling Ruby/Rails
  276. remote: -----> Using Ruby version: ruby-2.6.0
  277. remote: -----> Installing dependencies using bundler 1.15.2
  278. remote:        Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment
  279. remote:        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`.
  280. remote:        Fetching gem metadata from https://rubygems.org/.........
  281. remote:        Fetching rake 12.3.2
  282. remote:        Installing rake 12.3.2
  283. remote:        Fetching concurrent-ruby 1.1.4
  284. remote:        Fetching thread_safe 0.3.6
  285. remote:        Fetching minitest 5.11.3
  286. remote:        Installing minitest 5.11.3
  287. remote:        Installing thread_safe 0.3.6
  288. remote:        Installing concurrent-ruby 1.1.4
  289. remote:        Fetching builder 3.2.3
  290. remote:        Installing builder 3.2.3
  291. remote:        Fetching erubi 1.8.0
  292. remote:        Fetching mini_portile2 2.4.0
  293. remote:        Installing erubi 1.8.0
  294. remote:        Installing mini_portile2 2.4.0
  295. remote:        Fetching crass 1.0.4
  296. remote:        Installing crass 1.0.4
  297. remote:        Fetching rack 2.0.6
  298. remote:        Fetching websocket-extensions 0.1.3
  299. remote:        Fetching nio4r 2.3.1
  300. remote:        Installing rack 2.0.6
  301. remote:        Installing websocket-extensions 0.1.3
  302. remote:        Installing nio4r 2.3.1 with native extensions
  303. remote:        Fetching mini_mime 1.0.1
  304. remote:        Installing mini_mime 1.0.1
  305. remote:        Fetching arel 9.0.0
  306. remote:        Installing arel 9.0.0
  307. remote:        Fetching mimemagic 0.3.3
  308. remote:        Installing mimemagic 0.3.3
  309. remote:        Fetching msgpack 1.2.6
  310. remote:        Installing msgpack 1.2.6 with native extensions
  311. remote:        Using bundler 1.17.2
  312. remote:        Fetching coffee-script-source 1.12.2
  313. remote:        Installing coffee-script-source 1.12.2
  314. remote:        Fetching execjs 2.7.0
  315. remote:        Installing execjs 2.7.0
  316. remote:        Fetching method_source 0.9.2
  317. remote:        Installing method_source 0.9.2
  318. remote:        Fetching thor 0.20.3
  319. remote:        Installing thor 0.20.3
  320. remote:        Fetching ffi 1.10.0
  321. remote:        Installing ffi 1.10.0 with native extensions
  322. remote:        Fetching multi_json 1.13.1
  323. remote:        Installing multi_json 1.13.1
  324. remote:        Fetching pg 1.1.4
  325. remote:        Installing pg 1.1.4 with native extensions
  326. remote:        Fetching puma 3.12.0
  327. remote:        Installing puma 3.12.0 with native extensions
  328. remote:        Fetching rb-fsevent 0.10.3
  329. remote:        Installing rb-fsevent 0.10.3
  330. remote:        Fetching tilt 2.0.9
  331. remote:        Installing tilt 2.0.9
  332. remote:        Fetching turbolinks-source 5.2.0
  333. remote:        Installing turbolinks-source 5.2.0
  334. remote:        Fetching tzinfo 1.2.5
  335. remote:        Installing tzinfo 1.2.5
  336. remote:        Fetching nokogiri 1.10.1
  337. remote:        Installing nokogiri 1.10.1 with native extensions
  338. remote:        Fetching i18n 1.5.3
  339. remote:        Installing i18n 1.5.3
  340. remote:        Fetching websocket-driver 0.7.0
  341. remote:        Installing websocket-driver 0.7.0 with native extensions
  342. remote:        Fetching mail 2.7.1
  343. remote:        Installing mail 2.7.1
  344. remote:        Fetching rack-test 1.1.0
  345. remote:        Installing rack-test 1.1.0
  346. remote:        Fetching sprockets 3.7.2
  347. remote:        Installing sprockets 3.7.2
  348. remote:        Fetching marcel 0.3.3
  349. remote:        Installing marcel 0.3.3
  350. remote:        Fetching coffee-script 2.4.1
  351. remote:        Installing coffee-script 2.4.1
  352. remote:        Fetching uglifier 4.1.20
  353. remote:        Installing uglifier 4.1.20
  354. remote:        Fetching bootsnap 1.4.0
  355. remote:        Installing bootsnap 1.4.0 with native extensions
  356. remote:        Fetching rb-inotify 0.10.0
  357. remote:        Installing rb-inotify 0.10.0
  358. remote:        Fetching turbolinks 5.2.0
  359. remote:        Installing turbolinks 5.2.0
  360. remote:        Fetching activesupport 5.2.2
  361. remote:        Installing activesupport 5.2.2
  362. remote:        Fetching loofah 2.2.3
  363. remote:        Fetching sass-listen 4.0.0
  364. remote:        Installing loofah 2.2.3
  365. remote:        Installing sass-listen 4.0.0
  366. remote:        Fetching rails-dom-testing 2.0.3
  367. remote:        Installing rails-dom-testing 2.0.3
  368. remote:        Fetching globalid 0.4.2
  369. remote:        Installing globalid 0.4.2
  370. remote:        Fetching activemodel 5.2.2
  371. remote:        Installing activemodel 5.2.2
  372. remote:        Fetching jbuilder 2.8.0
  373. remote:        Installing jbuilder 2.8.0
  374. remote:        Fetching rails-html-sanitizer 1.0.4
  375. remote:        Installing rails-html-sanitizer 1.0.4
  376. remote:        Fetching sass 3.7.3
  377. remote:        Fetching activejob 5.2.2
  378. remote:        Installing activejob 5.2.2
  379. remote:        Installing sass 3.7.3
  380. remote:        Fetching activerecord 5.2.2
  381. remote:        Installing activerecord 5.2.2
  382. remote:        Fetching actionview 5.2.2
  383. remote:        Installing actionview 5.2.2
  384. remote:        Fetching actionpack 5.2.2
  385. remote:        Installing actionpack 5.2.2
  386. remote:        Fetching actioncable 5.2.2
  387. remote:        Fetching activestorage 5.2.2
  388. remote:        Fetching actionmailer 5.2.2
  389. remote:        Installing actioncable 5.2.2
  390. remote:        Installing actionmailer 5.2.2
  391. remote:        Installing activestorage 5.2.2
  392. remote:        Fetching railties 5.2.2
  393. remote:        Fetching sprockets-rails 3.2.1
  394. remote:        Installing sprockets-rails 3.2.1
  395. remote:        Installing railties 5.2.2
  396. remote:        Fetching coffee-rails 4.2.2
  397. remote:        Fetching sass-rails 5.0.7
  398. remote:        Fetching rails 5.2.2
  399. remote:        Installing sass-rails 5.0.7
  400. remote:        Installing coffee-rails 4.2.2
  401. remote:        Installing rails 5.2.2
  402. remote:        Bundle complete! 19 Gemfile dependencies, 61 gems now installed.
  403. remote:        Gems in the groups development and test were not installed.
  404. remote:        Bundled gems are installed into `./vendor/bundle`
  405. remote:        Post-install message from i18n:
  406. remote:        
  407. remote:        HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
  408. remote:        But that may break your application.
  409. remote:        
  410. remote:        Please check your Rails app for 'config.i18n.fallbacks = true'.
  411. remote:        If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
  412. remote:        'config.i18n.fallbacks = [I18n.default_locale]'.
  413. remote:        If not, fallbacks will be broken in your app by I18n 1.1.x.
  414. remote:        
  415. remote:        For more info see:
  416. remote:        https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
  417. remote:        
  418. remote:        Post-install message from sass:
  419. remote:        
  420. remote:        Ruby Sass is deprecated and will be unmaintained as of 26 March 2019.
  421. remote:        
  422. remote:        * If you use Sass as a command-line tool, we recommend using Dart Sass, the new
  423. remote:          primary implementation: https://sass-lang.com/install
  424. remote:        
  425. remote:        * If you use Sass as a plug-in for a Ruby web framework, we recommend using the
  426. remote:          sassc gem: https://github.com/sass/sassc-ruby#readme
  427. remote:        
  428. remote:        * For more details, please refer to the Sass blog:
  429. remote:          http://sass.logdown.com/posts/7081811
  430. remote:        
  431. remote:        Removing bundler (1.15.2)
  432. remote:        Bundle completed (44.85s)
  433. remote:        Cleaning up the bundler cache.
  434. remote:        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`.
  435. remote: -----> Installing node-v10.14.1-linux-x64
  436. remote: -----> Detecting rake tasks
  437. remote: -----> Preparing app for Rails asset pipeline
  438. remote:        Running: rake assets:precompile
  439. remote:        Yarn executable was not detected in the system.
  440. remote:        Download Yarn at https://yarnpkg.com/en/docs/install
  441. remote:        I, [2019-02-16T23:22:48.263822 #1308]  INFO -- : Writing /tmp/build_8b2f1512140e8f5a1196767783116c83/public/assets/application-fbacdb1bf716e4009d7c179c0cd2cb3f42014fed637c57e6aee3cc9e583ad94c.js
  442. remote:        I, [2019-02-16T23:22:48.264320 #1308]  INFO -- : Writing /tmp/build_8b2f1512140e8f5a1196767783116c83/public/assets/application-fbacdb1bf716e4009d7c179c0cd2cb3f42014fed637c57e6aee3cc9e583ad94c.js.gz
  443. remote:        I, [2019-02-16T23:22:48.270967 #1308]  INFO -- : Writing /tmp/build_8b2f1512140e8f5a1196767783116c83/public/assets/application-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css
  444. remote:        I, [2019-02-16T23:22:48.271630 #1308]  INFO -- : Writing /tmp/build_8b2f1512140e8f5a1196767783116c83/public/assets/application-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css.gz
  445. remote:        Asset precompilation completed (3.74s)
  446. remote:        Cleaning assets
  447. remote:        Running: rake assets:clean
  448. remote: -----> Detecting rails configuration
  449. remote:
  450. remote: ###### WARNING:
  451. remote:
  452. remote:        Detecting rails configuration failed
  453. remote:        set HEROKU_DEBUG_RAILS_RUNNER=1 to debug
  454. remote:
  455. remote: ###### WARNING:
  456. remote:
  457. remote:        We detected that some binary dependencies required to
  458. remote:        use all the preview features of Active Storage are not
  459. remote:        present on this system.
  460. remote:        
  461. remote:        For more information please see:
  462. remote:          https://devcenter.heroku.com/articles/active-storage-on-heroku
  463. remote:        
  464. remote:
  465. remote: ###### WARNING:
  466. remote:
  467. remote:        No Procfile detected, using the default web server.
  468. remote:        We recommend explicitly declaring how to boot your server process via a Procfile.
  469. remote:        https://devcenter.heroku.com/articles/ruby-default-web-server
  470. remote:
  471. remote:
  472. remote: -----> Discovering process types
  473. remote:        Procfile declares types     -> (none)
  474. remote:        Default types for buildpack -> console, rake, web
  475. remote:
  476. remote: -----> Compressing...
  477. remote:        Done: 42M
  478. remote: -----> Launching...
  479. remote:        Released v6
  480. remote:        https://pure-hamlet-38636.herokuapp.com/ deployed to Heroku
  481. remote:
  482. remote: Verifying deploy... done.
  483. To https://git.heroku.com/pure-hamlet-38636.git
  484.  * [new branch]      master -> master
  485. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku run rails db:migrate
  486. Running rails db:migrate on ⬢ pure-hamlet-38636... up, run.8118 (Free)
  487. D, [2019-02-16T23:28:37.432674 #4] DEBUG -- :    (14.7ms)  CREATE TABLE "schema_migrations" ("version" character varying NOT NULL PRIMARY KEY)
  488. D, [2019-02-16T23:28:37.446657 #4] DEBUG -- :    (10.2ms)  CREATE TABLE "ar_internal_metadata" ("key" character varying NOT NULL PRIMARY KEY, "value" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL)
  489. D, [2019-02-16T23:28:37.450873 #4] DEBUG -- :    (1.5ms)  SELECT pg_try_advisory_lock(4618531817686599330)
  490. D, [2019-02-16T23:28:37.491535 #4] DEBUG -- :    (1.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
  491. D, [2019-02-16T23:28:37.511106 #4] DEBUG -- :   ActiveRecord::InternalMetadata Load (1.6ms)  SELECT  "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = $1 LIMIT $2  [["key", "environment"], ["LIMIT", 1]]
  492. D, [2019-02-16T23:28:37.528293 #4] DEBUG -- :    (1.5ms)  BEGIN
  493. D, [2019-02-16T23:28:37.532163 #4] DEBUG -- :   ActiveRecord::InternalMetadata Create (2.1ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES ($1, $2, $3, $4) RETURNING "key"  [["key", "environment"], ["value", "production"], ["created_at", "2019-02-16 23:28:37.529022"], ["updated_at", "2019-02-16 23:28:37.529022"]]
  494. D, [2019-02-16T23:28:37.579417 #4] DEBUG -- :    (45.4ms)  COMMIT
  495. D, [2019-02-16T23:28:37.584524 #4] DEBUG -- :    (4.6ms)  SELECT pg_advisory_unlock(4618531817686599330)
  496. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$ heroku open
  497. elender@elender-VirtualBox:~/odin_on_rails/my_first_rails_app$
Advertisement
Add Comment
Please, Sign In to add comment