Skip to content

Commit

Permalink
feature: Implement Makefile
Browse files Browse the repository at this point in the history
Implement Makefile to manage project commands
  • Loading branch information
Marta Gutiérrez committed Jul 25, 2024
1 parent 8c83065 commit 4001a5b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
run-server:
bin/server

test:
bundle exec rspec ${TEST}

console:
rails c

bundle-install:
bundle intall

bundle-update:
bundle update ${GEM}

0 comments on commit 4001a5b

Please sign in to comment.