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.
ebextension to enable rails 6
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
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 0644 -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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment