Forked from lettergram/fix_elasticbeanstalk_for_rails6.config
Created
May 5, 2022 03:44
-
-
Save iiewad/35edf0a6b4d7b6ba7915df9fa65e41eb to your computer and use it in GitHub Desktop.
Revisions
-
lettergram revised this gist
Dec 4, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -42,7 +42,7 @@ commands: command: "chown webapp:webapp -R /var/app/ondeck/" ignoreErrors: true 16_chown_current: command: "chmod 0644 -R /var/app/ondeck/" ignoreErrors: true container_commands: -
lettergram revised this gist
Dec 4, 2019 . 1 changed file with 40 additions and 12 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -3,25 +3,53 @@ commands: 01_install_yarn: command: "sudo wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo && curl --silent --location https://rpm.nodesource.com/setup_6.x | sudo bash - && sudo yum install yarn -y" 02_download_nodejs: command: "curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -" 03_install_nodejs: command: "yum -y install nodejs" 04_mkdir_webapp_dir: command: "mkdir /home/webapp" ignoreErrors: true 05_chown_webapp_dir: command: "chown webapp:webapp /home/webapp" ignoreErrors: true 06_chmod_webapp_dir: command: "chmod 0744 /home/webapp" ignoreErrors: true 07_chmod_logs: command: "chown webapp:webapp -R /var/app/current/log/" ignoreErrors: true 08_create_log_file: command: "touch /var/app/current/log/production.log" ignoreErrors: true 09_chown_log_production: command: "chown webapp:webapp /var/app/current/log/production.log" ignoreErrors: true 10_chmod_log_dir: command: "chmod 0664 -R /var/app/current/log/" ignoreErrors: true 11_update_bundler: command: "gem update bundler" ignoreErrors: true 12_config_for_update_nokogiri: command: "bundle config build.nokogiri --use-system-libraries" 13_chown_current: command: "chown webapp:webapp -R /var/app/current/" ignoreErrors: true 14_chmod_current: command: "chmod 0755 -R /var/app/current/" ignoreErrors: true 15_chown_current: command: "chown webapp:webapp -R /var/app/ondeck/" ignoreErrors: true 16_chown_current: command: "chmod 0755 -R /var/app/ondeck/" ignoreErrors: true container_commands: 17_install_webpack: command: "npm install --save-dev webpack" 18_config_for_update_nokogiri: command: "bundle config build.nokogiri --use-system-libraries" 19_precompile: command: "bundle exec rake assets:precompile" -
lettergram revised this gist
Nov 8, 2019 . 1 changed file with 14 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,10 +6,22 @@ commands: command: curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash - 03_install_nodejs: command: yum -y install nodejs 04_mkdir_webapp_dir: command: mkdir /home/webapp ignoreErrors: true 05_chown_webapp_dir: command: chown webapp:webapp /home/webapp ignoreErrors: true 06_chmod_webapp_dir: command: chmod 700 /home/webapp ignoreErrors: true 07_update_bundler: command: gem update bundler ignoreErrors: true container_commands: 08_install_webpack: command: npm install --save-dev webpack 09_precompile: command: bundle exec rake assets:precompile -
lettergram revised this gist
Nov 3, 2019 . 1 changed file with 3 additions and 19 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,31 +1,15 @@ commands: 01_install_yarn: command: "sudo wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo && curl --silent --location https://rpm.nodesource.com/setup_6.x | sudo bash - && sudo yum install yarn -y" 02_download_nodejs: command: curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash - 03_install_nodejs: command: yum -y install nodejs container_commands: 04_install_webpack: command: npm install --save-dev webpack 05_precompile: command: bundle exec rake assets:precompile -
lettergram renamed this gist
Nov 3, 2019 . 1 changed file with 6 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -9,7 +9,6 @@ all yarn -y" 03_install_nodejs: command: yum -y install nodejs 04_mkdir_webapp_dir: command: mkdir /home/webapp ignoreErrors: true @@ -19,11 +18,14 @@ all yarn -y" 06_chmod_webapp_dir: command: chmod 700 /home/webapp ignoreErrors: true 07_update_bundler: command: gem update bundler ignoreErrors: true container_commands: 08_install_webpack: command: npm install --save-dev webpack 09_precompile: command: bundle exec rake assets:precompile -
lettergram created this gist
Nov 3, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ commands: 01_install_yarn: command: "sudo wget https://dl.yarnpkg.com/rpm/yarn.repo -O /etc/yum.repos.d/yarn.repo &&\ curl --silent --location https://rpm.nodesource.com/setup_6.x | sudo bash - && sudo yum inst\ all yarn -y" 02_download_nodejs: command: curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash - 03_install_nodejs: command: yum -y install nodejs 04_mkdir_webapp_dir: command: mkdir /home/webapp ignoreErrors: true 05_chown_webapp_dir: command: chown webapp:webapp /home/webapp ignoreErrors: true 06_chmod_webapp_dir: command: chmod 700 /home/webapp ignoreErrors: true 07_update_bundler command: gem update bundler ignoreErrors: true container_commands: 08_precompile: command: bundle exec rails assets:precompile