From de77167cf5acbefa713650f11dfb7435ce2bf3ee Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 21 Dec 2023 17:51:50 -0600 Subject: [PATCH] makefile notes --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Makefile b/Makefile index 49a212b..f20d272 100644 --- a/Makefile +++ b/Makefile @@ -2,3 +2,22 @@ commit: git add --all git commit -a git push + +run: + rails s + +migrate: + bin/rails db:migrate RAILS_ENV=development + +bundle: + bundle config set --local path 'vendor/bundle' # sets everything to be configured locally + bundle update listen + bundle install + +versions: + -rails --version + -ruby --version + -node --version + -npm --version + -yarnpkg --version + -nodejs --version