querqy / chorus

Towards an open source stack for e-commerce search
Apache License 2.0
141 stars 33 forks source link

Thor needs bundle exec to run #165

Closed aehm03 closed 5 months ago

aehm03 commented 5 months ago

See here: https://github.com/o19s/quepid/pull/922

This means https://github.com/querqy/chorus/blob/main/katas/000_setting_up_chorus.md

148:docker-compose run quepid thor user:create -a admin@choruselectronics.com "Chorus Admin" password

must be changed to

docker-compose run quepid bundle exec thor user:create -a admin@choruselectronics.com "Chorus Admin" password

and https://github.com/querqy/chorus/blob/main/TECHNICAL_DETAILS.md 46:docker-compose run quepid thor user:create -a demo@example.com "Demo User" password

must also be changed accordingly.

epugh commented 5 months ago

Like wise, would love a PR for this! Thank you.