Ruby on Rails에 대한 자동 설치 시스템 종속성
2650 단어 tutorialrubydevopsprogramming
필요한 종속성을 설정 및 설치/업데이트하는 데 사용할 Ruby on Rails 프로젝트에 대한 규칙
bin/setup
이 있습니다. 그러나 기본적으로 시스템 종속성은 포함되지 않습니다.이를 위해 the Homebrew Bundle tool을 사용할 것입니다.
먼저 다음과 같은
Brewfile
가 필요합니다.# Redis - For ActionCable support (and Sidekiq, caching, etc.)
brew "redis"
# PostgreSQL - brew install postgresql
brew "postgresql"
# Overmind (requires tmux)
brew "tmux"
brew "overmind"
# Imagemagick or libvips - for processing images (avatars, file uploads, etc.)
brew "vips"
# Yarn - for installing Javascript dependencies
brew "yarn"
그런 다음
bin/setup,
에서 다음을 추가합니다.puts "== Installing system dependencies =="
if system('[[ (-x "$(command -v brew)") ]]') # Is Homebrew available?
system("brew bundle check --no-lock --no-upgrade") || system!("brew bundle --no-upgrade --no-lock") # install if there are missed dependencies
end
다른 종속성을 설치하기 전에 처음에 추가하는 것을 선호합니다.
이는 새로운 온보딩이 하나의 명령만으로 개발을 설정하는 데 도움이 됩니다.
README
에서 명령 수를 줄입니다.Paul Keen은 오픈 소스 기여자이자 JetThoughts의 CTO입니다. 그를 팔로우하거나 GitHub .
If you enjoyed this story, we recommend reading our latest tech stories and trending tech stories.
Reference
이 문제에 관하여(Ruby on Rails에 대한 자동 설치 시스템 종속성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jetthoughts/auto-install-system-dependencies-for-ruby-on-rails-48kf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)