Fix: セットアップスクリプトのyarn install
でエラーが出る (#292)
This commit is contained in:
parent
eda8dae5a7
commit
927e02e051
5 changed files with 365 additions and 0 deletions
72
install/9.0/setup4.sh
Normal file
72
install/9.0/setup4.sh
Normal file
|
@ -0,0 +1,72 @@
|
|||
cat << EOF
|
||||
|
||||
================== [kmyblue setup script 4] ======================
|
||||
Install Ruby
|
||||
|
||||
EOF
|
||||
|
||||
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
|
||||
RUBY_CONFIGURE_OPTS=--with-jemalloc rbenv install 3.2.2
|
||||
rbenv global 3.2.2
|
||||
|
||||
cat << EOF
|
||||
|
||||
================== [kmyblue setup script 4] ======================
|
||||
Install Ruby bundler
|
||||
|
||||
EOF
|
||||
|
||||
gem install bundler --no-document
|
||||
|
||||
cd ~/live
|
||||
|
||||
cat << EOF
|
||||
|
||||
================== [kmyblue setup script 4] ======================
|
||||
Install yarn packages
|
||||
|
||||
EOF
|
||||
|
||||
yarn install
|
||||
|
||||
cat << EOF
|
||||
|
||||
================== [kmyblue setup script 4] ======================
|
||||
Install bundle packages
|
||||
|
||||
EOF
|
||||
|
||||
bundle config deployment 'true'
|
||||
bundle config without 'development test'
|
||||
bundle install -j$(getconf _NPROCESSORS_ONLN)
|
||||
|
||||
rm ~/setup2.sh
|
||||
rm ~/setup3.sh
|
||||
rm ~/setup4.sh
|
||||
|
||||
# ---------------------------------------------------
|
||||
|
||||
cat << EOF
|
||||
|
||||
============== [kmyblue setup script 4 completed] ================
|
||||
|
||||
PostgreSQL and Redis are now available on localhost.
|
||||
|
||||
* PostgreSQL
|
||||
host : /var/run/postgresql
|
||||
user : mastodon
|
||||
database : mastodon_production
|
||||
password : ohagi
|
||||
|
||||
* Redis
|
||||
host : localhost
|
||||
password is empty
|
||||
|
||||
[IMPORTANT] Check PostgreSQL password before setup!
|
||||
|
||||
Input this command to finish setup:
|
||||
cd live
|
||||
RAILS_ENV=production bundle exec rake mastodon:setup
|
||||
|
||||
EOF
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue