Created
February 13, 2020 18:22
-
-
Save pvalena/e4e7f0e52b73ba55d916ea465cff6f4a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
+ exec /usr/bin/podman run --rm -it ffb01683ed4d bash -c 'set -xe | |
ruby -v | |
gem list | |
gem env | |
which rails || gem install rails | |
export GEM_HOME=$( ruby -e '\''puts Gem.user_dir'\'' ) | |
# The bellow can fail, but just continue until log | |
{ set +e ; }&>/dev/null | |
rails new app --skip-bundle --skip-spring --skip-test --skip-bootsnap --skip-webpacker --skip-javascript -f | |
cd app || exit 1 | |
[[ -z "" ]] || echo "gem '\'''\''" >> Gemfile | |
rm Gemfile.lock | |
bundle install --path vendor/bundle -r 3 | |
#bundle exec rails webpacker:install | |
bash -c "set -x ; timeout 60 rails server puma -P rails.pid &>rails.log" & | |
sleep 45 | |
PID="$(cat rails.pid)" && { | |
grep '\''^[0-9]'\'' <<< "$PID" || exit 1 | |
curl -Lks '\''http://0.0.0.0:3000'\'' | head | |
sleep 20 | |
}||: | |
cat rails.log' | |
+ ruby -v | |
ruby 2.6.5p114 (2019-10-01 revision 67812) [x86_64-linux] | |
+ gem list | |
*** LOCAL GEMS *** | |
bigdecimal (1.4.1) | |
bundler (1.17.2) | |
cmath (default: 1.0.0) | |
csv (default: 3.0.9) | |
date (default: 2.0.0) | |
dbm (default: 1.0.0) | |
did_you_mean (1.3.0) | |
e2mmap (default: 0.1.0) | |
etc (default: 1.0.1) | |
fcntl (default: 1.0.0) | |
fiddle (default: 1.0.0) | |
fileutils (default: 1.1.0) | |
forwardable (default: 1.2.0) | |
gdbm (default: 2.0.0) | |
io-console (0.4.7) | |
ipaddr (default: 1.2.2) | |
irb (1.0.0) | |
json (2.2.0) | |
logger (default: 1.3.0) | |
matrix (default: 0.1.0) | |
mutex_m (default: 0.1.0) | |
openssl (2.1.2) | |
ostruct (default: 0.1.0) | |
prime (default: 0.1.0) | |
psych (3.1.0) | |
rake (12.3.2) | |
rdoc (6.1.2) | |
rexml (default: 3.1.9) | |
rss (default: 0.2.7) | |
scanf (default: 1.0.0) | |
sdbm (default: 1.0.0) | |
shell (default: 0.7) | |
stringio (default: 0.0.2) | |
strscan (default: 1.0.0) | |
sync (default: 0.5.0) | |
thwait (default: 0.1.0) | |
tracer (default: 0.1.0) | |
webrick (default: 1.4.2) | |
zlib (default: 1.0.0) | |
+ gem env | |
RubyGems Environment: | |
- RUBYGEMS VERSION: 3.0.3 | |
- RUBY VERSION: 2.6.5 (2019-10-01 patchlevel 114) [x86_64-linux] | |
- INSTALLATION DIRECTORY: /usr/share/gems | |
- USER INSTALLATION DIRECTORY: /opt/app-root/src/.gem/ruby | |
- RUBY EXECUTABLE: /usr/bin/ruby | |
- GIT EXECUTABLE: /usr/bin/git | |
- EXECUTABLE DIRECTORY: /usr/bin | |
- SPEC CACHE DIRECTORY: /opt/app-root/src/.gem/specs | |
- SYSTEM CONFIGURATION DIRECTORY: /etc | |
- RUBYGEMS PLATFORMS: | |
- ruby | |
- x86_64-linux | |
- GEM PATHS: | |
- /usr/share/gems | |
- /opt/app-root/src/.gem/ruby | |
- /usr/local/share/gems | |
- GEM CONFIGURATION: | |
- :update_sources => true | |
- :verbose => true | |
- :backtrace => false | |
- :bulk_threshold => 1000 | |
- "gem" => "--user-install --bindir /opt/app-root/src/bin" | |
- REMOTE SOURCES: | |
- https://rubygems.org/ | |
- SHELL PATH: | |
- /opt/app-root/src/bin | |
- /opt/app-root/bin | |
- /usr/local/sbin | |
- /usr/local/bin | |
- /usr/sbin | |
- /usr/bin | |
- /sbin | |
- /bin | |
+ which rails | |
which: no rails in (/opt/app-root/src/bin:/opt/app-root/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin) | |
+ gem install rails | |
Fetching tzinfo-1.2.6.gem | |
Fetching zeitwerk-2.2.2.gem | |
Fetching rack-2.2.2.gem | |
Fetching concurrent-ruby-1.1.6.gem | |
Fetching activesupport-6.0.2.1.gem | |
Fetching i18n-1.8.2.gem | |
Fetching thread_safe-0.3.6.gem | |
Fetching minitest-5.14.0.gem | |
Fetching rack-test-1.1.0.gem | |
Fetching mini_portile2-2.4.0.gem | |
Fetching nokogiri-1.10.8.gem | |
Fetching crass-1.0.6.gem | |
Fetching loofah-2.4.0.gem | |
Fetching rails-html-sanitizer-1.3.0.gem | |
Fetching rails-dom-testing-2.0.3.gem | |
Fetching builder-3.2.4.gem | |
Fetching erubi-1.9.0.gem | |
Fetching actionview-6.0.2.1.gem | |
Fetching actionpack-6.0.2.1.gem | |
Fetching activemodel-6.0.2.1.gem | |
Fetching activerecord-6.0.2.1.gem | |
Fetching globalid-0.4.2.gem | |
Fetching activejob-6.0.2.1.gem | |
Fetching mini_mime-1.0.2.gem | |
Fetching mail-2.7.1.gem | |
Fetching actionmailer-6.0.2.1.gem | |
Fetching nio4r-2.5.2.gem | |
Fetching websocket-extensions-0.1.4.gem | |
Fetching websocket-driver-0.7.1.gem | |
Fetching actioncable-6.0.2.1.gem | |
Fetching mimemagic-0.3.4.gem | |
Fetching marcel-0.3.3.gem | |
Fetching activestorage-6.0.2.1.gem | |
Fetching actionmailbox-6.0.2.1.gem | |
Fetching actiontext-6.0.2.1.gem | |
Fetching thor-1.0.1.gem | |
Fetching method_source-0.9.2.gem | |
Fetching railties-6.0.2.1.gem | |
Fetching sprockets-4.0.0.gem | |
Fetching sprockets-rails-3.2.1.gem | |
Fetching rails-6.0.2.1.gem | |
Successfully installed concurrent-ruby-1.1.6 | |
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale. | |
But that may break your application. | |
If you are upgrading your Rails application from an older version of Rails: | |
Please check your Rails app for 'config.i18n.fallbacks = true'. | |
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be | |
'config.i18n.fallbacks = [I18n.default_locale]'. | |
If not, fallbacks will be broken in your app by I18n 1.1.x. | |
If you are starting a NEW Rails application, you can ignore this notice. | |
For more info see: | |
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0 | |
Successfully installed i18n-1.8.2 | |
Successfully installed thread_safe-0.3.6 | |
Successfully installed tzinfo-1.2.6 | |
Successfully installed minitest-5.14.0 | |
Successfully installed zeitwerk-2.2.2 | |
Successfully installed activesupport-6.0.2.1 | |
Successfully installed rack-2.2.2 | |
Successfully installed rack-test-1.1.0 | |
Successfully installed mini_portile2-2.4.0 | |
Building native extensions. This could take a while... | |
Successfully installed nokogiri-1.10.8 | |
Successfully installed crass-1.0.6 | |
Successfully installed loofah-2.4.0 | |
Successfully installed rails-html-sanitizer-1.3.0 | |
Successfully installed rails-dom-testing-2.0.3 | |
Successfully installed builder-3.2.4 | |
Successfully installed erubi-1.9.0 | |
Successfully installed actionview-6.0.2.1 | |
Successfully installed actionpack-6.0.2.1 | |
Successfully installed activemodel-6.0.2.1 | |
Successfully installed activerecord-6.0.2.1 | |
Successfully installed globalid-0.4.2 | |
Successfully installed activejob-6.0.2.1 | |
Successfully installed mini_mime-1.0.2 | |
Successfully installed mail-2.7.1 | |
Successfully installed actionmailer-6.0.2.1 | |
Building native extensions. This could take a while... | |
Successfully installed nio4r-2.5.2 | |
Successfully installed websocket-extensions-0.1.4 | |
Building native extensions. This could take a while... | |
Successfully installed websocket-driver-0.7.1 | |
Successfully installed actioncable-6.0.2.1 | |
Successfully installed mimemagic-0.3.4 | |
Successfully installed marcel-0.3.3 | |
Successfully installed activestorage-6.0.2.1 | |
Successfully installed actionmailbox-6.0.2.1 | |
Successfully installed actiontext-6.0.2.1 | |
Successfully installed thor-1.0.1 | |
Successfully installed method_source-0.9.2 | |
Successfully installed railties-6.0.2.1 | |
Successfully installed sprockets-4.0.0 | |
Successfully installed sprockets-rails-3.2.1 | |
Successfully installed rails-6.0.2.1 | |
Parsing documentation for concurrent-ruby-1.1.6 | |
Installing ri documentation for concurrent-ruby-1.1.6 | |
Parsing documentation for i18n-1.8.2 | |
Installing ri documentation for i18n-1.8.2 | |
Parsing documentation for thread_safe-0.3.6 | |
Installing ri documentation for thread_safe-0.3.6 | |
Parsing documentation for tzinfo-1.2.6 | |
Installing ri documentation for tzinfo-1.2.6 | |
Parsing documentation for minitest-5.14.0 | |
Installing ri documentation for minitest-5.14.0 | |
Parsing documentation for zeitwerk-2.2.2 | |
Installing ri documentation for zeitwerk-2.2.2 | |
Parsing documentation for activesupport-6.0.2.1 | |
Installing ri documentation for activesupport-6.0.2.1 | |
Parsing documentation for rack-2.2.2 | |
Installing ri documentation for rack-2.2.2 | |
Parsing documentation for rack-test-1.1.0 | |
Installing ri documentation for rack-test-1.1.0 | |
Parsing documentation for mini_portile2-2.4.0 | |
Installing ri documentation for mini_portile2-2.4.0 | |
Parsing documentation for nokogiri-1.10.8 | |
Installing ri documentation for nokogiri-1.10.8 | |
Parsing documentation for crass-1.0.6 | |
Installing ri documentation for crass-1.0.6 | |
Parsing documentation for loofah-2.4.0 | |
Installing ri documentation for loofah-2.4.0 | |
Parsing documentation for rails-html-sanitizer-1.3.0 | |
Installing ri documentation for rails-html-sanitizer-1.3.0 | |
Parsing documentation for rails-dom-testing-2.0.3 | |
Installing ri documentation for rails-dom-testing-2.0.3 | |
Parsing documentation for builder-3.2.4 | |
Installing ri documentation for builder-3.2.4 | |
Parsing documentation for erubi-1.9.0 | |
Installing ri documentation for erubi-1.9.0 | |
Parsing documentation for actionview-6.0.2.1 | |
Installing ri documentation for actionview-6.0.2.1 | |
Parsing documentation for actionpack-6.0.2.1 | |
Installing ri documentation for actionpack-6.0.2.1 | |
Parsing documentation for activemodel-6.0.2.1 | |
Installing ri documentation for activemodel-6.0.2.1 | |
Parsing documentation for activerecord-6.0.2.1 | |
Installing ri documentation for activerecord-6.0.2.1 | |
Parsing documentation for globalid-0.4.2 | |
Installing ri documentation for globalid-0.4.2 | |
Parsing documentation for activejob-6.0.2.1 | |
Installing ri documentation for activejob-6.0.2.1 | |
Parsing documentation for mini_mime-1.0.2 | |
Installing ri documentation for mini_mime-1.0.2 | |
Parsing documentation for mail-2.7.1 | |
Installing ri documentation for mail-2.7.1 | |
Parsing documentation for actionmailer-6.0.2.1 | |
Installing ri documentation for actionmailer-6.0.2.1 | |
Parsing documentation for nio4r-2.5.2 | |
Installing ri documentation for nio4r-2.5.2 | |
Parsing documentation for websocket-extensions-0.1.4 | |
Installing ri documentation for websocket-extensions-0.1.4 | |
Parsing documentation for websocket-driver-0.7.1 | |
Installing ri documentation for websocket-driver-0.7.1 | |
Parsing documentation for actioncable-6.0.2.1 | |
Installing ri documentation for actioncable-6.0.2.1 | |
Parsing documentation for mimemagic-0.3.4 | |
Installing ri documentation for mimemagic-0.3.4 | |
Parsing documentation for marcel-0.3.3 | |
Installing ri documentation for marcel-0.3.3 | |
Parsing documentation for activestorage-6.0.2.1 | |
Installing ri documentation for activestorage-6.0.2.1 | |
Parsing documentation for actionmailbox-6.0.2.1 | |
Installing ri documentation for actionmailbox-6.0.2.1 | |
Parsing documentation for actiontext-6.0.2.1 | |
Installing ri documentation for actiontext-6.0.2.1 | |
Parsing documentation for thor-1.0.1 | |
Installing ri documentation for thor-1.0.1 | |
Parsing documentation for method_source-0.9.2 | |
Installing ri documentation for method_source-0.9.2 | |
Parsing documentation for railties-6.0.2.1 | |
Installing ri documentation for railties-6.0.2.1 | |
Parsing documentation for sprockets-4.0.0 | |
Installing ri documentation for sprockets-4.0.0 | |
Parsing documentation for sprockets-rails-3.2.1 | |
Installing ri documentation for sprockets-rails-3.2.1 | |
Parsing documentation for rails-6.0.2.1 | |
Installing ri documentation for rails-6.0.2.1 | |
Done installing documentation for concurrent-ruby, i18n, thread_safe, tzinfo, minitest, zeitwerk, activesupport, rack, rack-test, mini_portile2, nokogiri, crass, loofah, rails-html-sanitizer, rails-dom-testing, builder, erubi, actionview, actionpack, activemodel, activerecord, globalid, activejob, mini_mime, mail, actionmailer, nio4r, websocket-extensions, websocket-driver, actioncable, mimemagic, marcel, activestorage, actionmailbox, actiontext, thor, method_source, railties, sprockets, sprockets-rails, rails after 33 seconds | |
41 gems installed | |
++ ruby -e 'puts Gem.user_dir' | |
+ export GEM_HOME=/opt/app-root/src/.gem/ruby | |
+ GEM_HOME=/opt/app-root/src/.gem/ruby | |
+ rails new app --skip-bundle --skip-spring --skip-test --skip-bootsnap --skip-webpacker --skip-javascript -f | |
create | |
create README.md | |
create Rakefile | |
create .ruby-version | |
create config.ru | |
create .gitignore | |
create Gemfile | |
run git init from "." | |
Initialized empty Git repository in /opt/app-root/src/app/.git/ | |
create app | |
create app/assets/config/manifest.js | |
create app/assets/stylesheets/application.css | |
create app/channels/application_cable/channel.rb | |
create app/channels/application_cable/connection.rb | |
create app/controllers/application_controller.rb | |
create app/helpers/application_helper.rb | |
create app/javascript/channels/consumer.js | |
create app/javascript/channels/index.js | |
create app/javascript/packs/application.js | |
create app/jobs/application_job.rb | |
create app/mailers/application_mailer.rb | |
create app/models/application_record.rb | |
create app/views/layouts/application.html.erb | |
create app/views/layouts/mailer.html.erb | |
create app/views/layouts/mailer.text.erb | |
create app/assets/images/.keep | |
create app/controllers/concerns/.keep | |
create app/models/concerns/.keep | |
create bin | |
create bin/rails | |
create bin/rake | |
create bin/setup | |
create bin/yarn | |
create config | |
create config/routes.rb | |
create config/application.rb | |
create config/environment.rb | |
create config/cable.yml | |
create config/puma.rb | |
create config/storage.yml | |
create config/environments | |
create config/environments/development.rb | |
create config/environments/production.rb | |
create config/environments/test.rb | |
create config/initializers | |
create config/initializers/application_controller_renderer.rb | |
create config/initializers/assets.rb | |
create config/initializers/backtrace_silencers.rb | |
create config/initializers/content_security_policy.rb | |
create config/initializers/cookies_serializer.rb | |
create config/initializers/cors.rb | |
create config/initializers/filter_parameter_logging.rb | |
create config/initializers/inflections.rb | |
create config/initializers/mime_types.rb | |
create config/initializers/new_framework_defaults_6_0.rb | |
create config/initializers/wrap_parameters.rb | |
create config/locales | |
create config/locales/en.yml | |
create config/master.key | |
append .gitignore | |
create config/boot.rb | |
create config/database.yml | |
create db | |
create db/seeds.rb | |
create lib | |
create lib/tasks | |
create lib/tasks/.keep | |
create lib/assets | |
create lib/assets/.keep | |
create log | |
create log/.keep | |
create public | |
create public/404.html | |
create public/422.html | |
create public/500.html | |
create public/apple-touch-icon-precomposed.png | |
create public/apple-touch-icon.png | |
create public/favicon.ico | |
create public/robots.txt | |
create tmp | |
create tmp/.keep | |
create tmp/pids | |
create tmp/pids/.keep | |
create tmp/cache | |
create tmp/cache/assets | |
create vendor | |
create vendor/.keep | |
create storage | |
create storage/.keep | |
create tmp/storage | |
create tmp/storage/.keep | |
remove app/javascript | |
remove config/initializers/cors.rb | |
remove config/initializers/new_framework_defaults_6_0.rb | |
remove bin/yarn | |
+ cd app | |
+ [[ -z '' ]] | |
+ rm Gemfile.lock | |
rm: cannot remove 'Gemfile.lock': No such file or directory | |
+ bundle install --path vendor/bundle -r 3 | |
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`. | |
Fetching gem metadata from https://rubygems.org/............ | |
Fetching gem metadata from https://rubygems.org/. | |
Resolving dependencies... | |
Fetching rake 13.0.1 | |
Installing rake 13.0.1 | |
Fetching concurrent-ruby 1.1.6 | |
Installing concurrent-ruby 1.1.6 | |
Fetching i18n 1.8.2 | |
Installing i18n 1.8.2 | |
Fetching minitest 5.14.0 | |
Installing minitest 5.14.0 | |
Fetching thread_safe 0.3.6 | |
Installing thread_safe 0.3.6 | |
Fetching tzinfo 1.2.6 | |
Installing tzinfo 1.2.6 | |
Fetching zeitwerk 2.2.2 | |
Installing zeitwerk 2.2.2 | |
Fetching activesupport 6.0.2.1 | |
Installing activesupport 6.0.2.1 | |
Fetching builder 3.2.4 | |
Installing builder 3.2.4 | |
Fetching erubi 1.9.0 | |
Installing erubi 1.9.0 | |
Fetching mini_portile2 2.4.0 | |
Installing mini_portile2 2.4.0 | |
Fetching nokogiri 1.10.8 | |
Installing nokogiri 1.10.8 with native extensions | |
Fetching rails-dom-testing 2.0.3 | |
Installing rails-dom-testing 2.0.3 | |
Fetching crass 1.0.6 | |
Installing crass 1.0.6 | |
Fetching loofah 2.4.0 | |
Installing loofah 2.4.0 | |
Fetching rails-html-sanitizer 1.3.0 | |
Installing rails-html-sanitizer 1.3.0 | |
Fetching actionview 6.0.2.1 | |
Installing actionview 6.0.2.1 | |
Fetching rack 2.2.2 | |
Installing rack 2.2.2 | |
Fetching rack-test 1.1.0 | |
Installing rack-test 1.1.0 | |
Fetching actionpack 6.0.2.1 | |
Installing actionpack 6.0.2.1 | |
Fetching nio4r 2.5.2 | |
Installing nio4r 2.5.2 with native extensions | |
Fetching websocket-extensions 0.1.4 | |
Installing websocket-extensions 0.1.4 | |
Fetching websocket-driver 0.7.1 | |
Installing websocket-driver 0.7.1 with native extensions | |
Fetching actioncable 6.0.2.1 | |
Installing actioncable 6.0.2.1 | |
Fetching globalid 0.4.2 | |
Installing globalid 0.4.2 | |
Fetching activejob 6.0.2.1 | |
Installing activejob 6.0.2.1 | |
Fetching activemodel 6.0.2.1 | |
Installing activemodel 6.0.2.1 | |
Fetching activerecord 6.0.2.1 | |
Installing activerecord 6.0.2.1 | |
Fetching mimemagic 0.3.4 | |
Installing mimemagic 0.3.4 | |
Fetching marcel 0.3.3 | |
Installing marcel 0.3.3 | |
Fetching activestorage 6.0.2.1 | |
Installing activestorage 6.0.2.1 | |
Fetching mini_mime 1.0.2 | |
Installing mini_mime 1.0.2 | |
Fetching mail 2.7.1 | |
Installing mail 2.7.1 | |
Fetching actionmailbox 6.0.2.1 | |
Installing actionmailbox 6.0.2.1 | |
Fetching actionmailer 6.0.2.1 | |
Installing actionmailer 6.0.2.1 | |
Fetching actiontext 6.0.2.1 | |
Installing actiontext 6.0.2.1 | |
Fetching bindex 0.8.1 | |
Installing bindex 0.8.1 with native extensions | |
Using bundler 1.17.2 | |
Fetching byebug 11.1.1 | |
Installing byebug 11.1.1 with native extensions | |
Fetching ffi 1.12.2 | |
Installing ffi 1.12.2 with native extensions | |
Fetching jbuilder 2.10.0 | |
Installing jbuilder 2.10.0 | |
Fetching rb-fsevent 0.10.3 | |
Installing rb-fsevent 0.10.3 | |
Fetching rb-inotify 0.10.1 | |
Installing rb-inotify 0.10.1 | |
Fetching ruby_dep 1.5.0 | |
Installing ruby_dep 1.5.0 | |
Fetching listen 3.1.5 | |
Installing listen 3.1.5 | |
Fetching method_source 0.9.2 | |
Installing method_source 0.9.2 | |
Fetching puma 4.3.1 | |
Installing puma 4.3.1 with native extensions | |
Fetching thor 1.0.1 | |
Installing thor 1.0.1 | |
Fetching railties 6.0.2.1 | |
Installing railties 6.0.2.1 | |
Fetching sprockets 4.0.0 | |
Installing sprockets 4.0.0 | |
Fetching sprockets-rails 3.2.1 | |
Installing sprockets-rails 3.2.1 | |
Fetching rails 6.0.2.1 | |
Installing rails 6.0.2.1 | |
Fetching sassc 2.2.1 | |
Installing sassc 2.2.1 with native extensions | |
Fetching tilt 2.0.10 | |
Installing tilt 2.0.10 | |
Fetching sassc-rails 2.1.2 | |
Installing sassc-rails 2.1.2 | |
Fetching sass-rails 6.0.0 | |
Installing sass-rails 6.0.0 | |
Fetching sqlite3 1.4.2 | |
Installing sqlite3 1.4.2 with native extensions | |
Fetching web-console 4.0.1 | |
Installing web-console 4.0.1 | |
Bundle complete! 9 Gemfile dependencies, 58 gems now installed. | |
Bundled gems are installed into `./vendor/bundle` | |
Post-install message from i18n: | |
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale. | |
But that may break your application. | |
If you are upgrading your Rails application from an older version of Rails: | |
Please check your Rails app for 'config.i18n.fallbacks = true'. | |
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be | |
'config.i18n.fallbacks = [I18n.default_locale]'. | |
If not, fallbacks will be broken in your app by I18n 1.1.x. | |
If you are starting a NEW Rails application, you can ignore this notice. | |
For more info see: | |
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0 | |
+ sleep 45 | |
+ bash -c 'set -x ; timeout 60 rails server puma -P rails.pid &>rails.log' | |
+ timeout 60 rails server puma -P rails.pid | |
++ cat rails.pid | |
+ PID=22856 | |
+ grep '^[0-9]' | |
22856 | |
+ curl -Lks http://0.0.0.0:3000 | |
+ head | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Ruby on Rails</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<style type="text/css" media="screen" charset="utf-8"> | |
body { | |
font-family: Georgia, sans-serif; | |
line-height: 2rem; | |
+ sleep 20 | |
+ cat rails.log | |
DEPRECATION WARNING: Passing the Rack server name as a regular argument is deprecated and will be removed in the next Rails version. Please, use the -u option instead. (called from require at bin/rails:4) | |
=> Booting Puma | |
=> Rails 6.0.2.1 application starting in development | |
=> Run `rails server --help` for more startup options | |
Puma starting in single mode... | |
* Version 4.3.1 (ruby 2.6.5-p114), codename: Mysterious Traveller | |
* Min threads: 5, max threads: 5 | |
* Environment: development | |
* Listening on tcp://127.0.0.1:3000 | |
* Listening on tcp://[::1]:3000 | |
Use Ctrl-C to stop | |
Started GET "/" for 127.0.0.1 at 2020-02-13 18:17:08 +0000 | |
(0.8ms) SELECT sqlite_version(*) | |
Processing by Rails::WelcomeController#index as */* | |
Rendering vendor/bundle/ruby/2.6.0/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb | |
Rendered vendor/bundle/ruby/2.6.0/gems/railties-6.0.2.1/lib/rails/templates/rails/welcome/index.html.erb (Duration: 4.8ms | Allocations: 424) | |
Completed 200 OK in 9ms (Views: 7.0ms | ActiveRecord: 0.0ms | Allocations: 2314) | |
- Gracefully stopping, waiting for requests to finish | |
=== puma shutdown: 2020-02-13 18:17:22 +0000 === | |
- Goodbye! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment