fix: Use pnpm in make setup command (#10289)

This commit is contained in:
Arunim Chaudhary
2024-10-16 01:27:29 +05:30
committed by GitHub
parent 3a0fd9b777
commit 392e58b0be

View File

@@ -6,7 +6,7 @@ RAILS_ENV ?= development
setup: setup:
gem install bundler gem install bundler
bundle install bundle install
yarn install pnpm install
db_create: db_create:
RAILS_ENV=$(RAILS_ENV) bundle exec rails db:create RAILS_ENV=$(RAILS_ENV) bundle exec rails db:create
@@ -30,7 +30,7 @@ server:
RAILS_ENV=$(RAILS_ENV) bundle exec rails server -b 0.0.0.0 -p 3000 RAILS_ENV=$(RAILS_ENV) bundle exec rails server -b 0.0.0.0 -p 3000
burn: burn:
bundle && yarn bundle && pnpm install
run: run:
@if [ -f ./.overmind.sock ]; then \ @if [ -f ./.overmind.sock ]; then \