Rails6, Ruby2.6.2 어플리케이션이 시작될 때까지 로컬로 진행하는 단계(mac)
$ mkdir sample-app
$ cd sample-app
$ bundle init
Gemfile# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "rails", "~>6"
bundle install --path vendor/bundle
bundle exec rails new . -B -d mysql --skip-turbolinks
$ bundle install
이 오류가 발생한 경우
$ bundle config --local build.mysql2 "--with-cppflags=-I/usr/local/opt/openssl/include"
$ bundle config --local build.mysql2 "--with-ldflags=-L/usr/local/opt/openssl/lib"
그래도 안 되는 상황.$ bundle config --local build.mysql2 "--with-ldflags=-L/usr/local/opt/openssl/lib --with-cppflags=-I/usr/local/opt/openssl/include"
$ bundle install --path=vendor/bundle
옳은지는 모르겠지만 이 정도면 됐어.웹 패키지 가져올 때 (vue 버전)
$ rails webpacker:install
$ rails webpacker:install:vue
$ rails s -p 3000
3000의 속도로 rails 초기 화면이 완성되었습니다!!Reference
이 문제에 관하여(Rails6, Ruby2.6.2 어플리케이션이 시작될 때까지 로컬로 진행하는 단계(mac)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ishiken_1115/items/a1b24995934464b43f9f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)