obdev/Makefile

48 lines
983 B
Makefile
Raw Normal View History

2024-01-11 20:00:43 -06:00
push:
git add --all
git commit -a
git push
pull:
git pull
2024-01-16 14:08:06 -06:00
version:
2024-02-07 19:07:06 -06:00
@rails --version
@whereis rails
@echo "npm" `npm --version`
@whereis npm
@echo "yarn" `yarn -version`
@whereis yarn
@ruby --version
@whereis ruby
reset:
git reset --hard
2024-01-16 14:08:06 -06:00
# gem 'devise'
# bundle install
# rails generate devise:install
# rails generate devise User
# rails db:migrate
# rails generate devise:views
# gem 'webpacker'
# bundle install
# rails webpacker:install
# gem 'kaminari'
# bundle install
# rails g kaminari:views default
2024-02-07 19:21:34 -06:00
# mariams box:
# mariam@flippy:~/obdev$ make version
# Rails 7.1.2
# rails: /usr/bin/rails /home/mariam/.rbenv/shims/rails
# npm 9.2.0
# npm: /usr/bin/npm /usr/share/npm /usr/share/man/man1/npm.1.gz
# yarn 1.22.21
# yarn: /usr/local/bin/yarn
# ruby 3.2.2 (2023-03-30 revision e51014f9c0) [x86_64-linux]
# ruby: /usr/bin/ruby /usr/lib/x86_64-linux-gnu/ruby /usr/lib/ruby /home/mariam/.rbenv/shims/ruby /usr/share/man/man1/ruby.1.gz
# mariam@flippy:~/obdev$