Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.adoc #98

Merged
merged 1 commit into from
Apr 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 13 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,12 @@ After you setup the shell initialization file, restart your terminal or reload t
Once you are back in the project's folder, run:

[source,bash]
----
eval "$(direnv hook ${SHELL/*\/})"
direnv allow .
----

NOTE: the first line above should be copied to your shell RC (aka "dotfiles").

This will load the environment variables from the `.envrc` file.

Expand Down Expand Up @@ -144,9 +149,6 @@ brew bundle 2>/dev/null
brew install rbenv ruby-build direnv volta

eval "$(rbenv init -)"
eval "$(direnv hook ${SHELL/*\/})"

direnv allow .

rbenv install -s $(cat .ruby-version)
rbenv local $(cat .ruby-version)
Expand All @@ -155,8 +157,14 @@ bundle install -j 12
rails db:prepare
rails db:test:prepare

# Run Specs at the end:
bundle exec rspec --parallel
# Run Specs at the end
bundle exec rspec

# Run rubocop
bundle exec rubocop

# Run ShellCheck
bin/shchk
----

==== Manual 4: Starting the Server
Expand Down
Loading