Mac(M1)에 Rails 설치
전제 조건
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
.zshrc
파일을 사용하거나 생성하지 않은 경우 기본적으로 vim 편집기를 사용할 수 있습니다.# To create the file
vim ~/.zshrc
# :w to save it.
루비 설치
rbenv
:brew install rbenv ruby-build
rbenv
를 사용하기 위해 설정합니다.echo 'if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi' >> ~/.zshrc
source ~/.zshrc
rbenv install 3.1.2
참고: Ruby 버전은 공식Documentation에서 찾을 수 있습니다.
rbenv global 3.1.2
source .zshrc
참고: 제대로 설치되었는지 확인하려면 다음을 입력합니다.
ruby -v
레일 설치
ruby
를 설치하면 gem
가 포함된 rails
패키지 관리자를 사용할 수 있습니다.
gem install rails
rbenv
명령을 사용하려면 rails
를 다시 로드하십시오.rbenv rehash
참고:
rails
를 올바르게 설치하면 다음을 입력할 수 있습니다.rails -v
새 레일 프로젝트를 생성하고 실행합니다.
rails new proyect-name
Note: As default
rails
use theSQLite
database when a new project is created, we can use our own databases, such as , PostgreSQL, MongoDB, etc. And we can set it by typing:rails new proyect-name mysql
rails db:create
Note: If we a database with password, we have to configured the file
config/database.yml
, and change the data from the user (for developer purposesroot
) and the password. So by making saving this changes we use rails db:create
rails server
Reference
이 문제에 관하여(Mac(M1)에 Rails 설치), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/developemmanuel/install-rails-in-mac-m1-4281텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)