Skip to content

Commit

Permalink
Add a bin/setup
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennebarrie committed Dec 19, 2023
1 parent 2ee626a commit 5ce5e59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Before engaging with this community, please read and understand our
## Setting up development environment

* The gem follows standard Rails practices:
* `bundle install` to install dependencies
* `bin/setup` to install dependencies
* `bin/rails server` to start the server
* `bin/rails test` to run tests
* `bin/rails test:system` to run system tests
Expand Down
6 changes: 6 additions & 0 deletions bin/setup
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh

set -ex

bundle install
bin/rails db:setup

0 comments on commit 5ce5e59

Please sign in to comment.