2020-03-15 18:31:46 +00:00
# Development
2020-03-18 19:11:10 +00:00
Install instructions in INSTALL.md
2020-03-22 12:49:27 +00:00
## Startup
Just run and open http://localhost:4000/
docker-compose -f docker-compose.dev.yml up`
## Tips
2020-03-21 20:32:48 +00:00
1. Everything should be running on containers.
1. If you need to run stuff on your host (eg. ruby, rubocop, bundle install etc) run all commands from the: `Dockerfile.dev` . It should setup identical setup for your machine.
1. Add docker container names to /etc/hosts. This makes it possible to run test from local machine without using the container since editor/IDE don't integrate with Docker so well.
sudo echo `docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ensl_dev_db` db >> /etc/hosts
2020-03-22 12:49:27 +00:00
1. VS Code and RubyMine are great IDE's/editors.
2020-03-21 20:32:48 +00:00
1. To run VS Code plugin Ruby Test Explorer in docker container you need to create path to custom
2020-03-16 02:35:44 +00:00
This is just random tips for development. Not a full documentation.
2020-03-15 18:31:46 +00:00
2020-03-22 12:49:27 +00:00
## Best practices
1. https://github.com/rubocop-hq/ruby-style-guide
1. https://rails-bestpractices.com/
1. http://www.betterspecs.org/
1. https://github.com/rubocop-hq/rspec-style-guide
1. Run rubocop
## Handy commands
2020-03-15 18:31:46 +00:00
2020-03-22 04:13:47 +00:00
docker-compose -f docker-compose.dev.yml exec -u web web /bin/bash`
docker-compose -f docker-compose.dev.yml exec -u web test /bin/bash`
docker-compose -f docker-compose.dev.yml restart web`
docker-compose -f docker-compose.dev.yml exec -u web test bundle exec rspec`
docker-compose -f docker-compose.dev.yml exec -u web test bundle exec rspec spec/controllers/shoutmsgs_controller_spec.rb`
docker-compose -f docker-compose.dev.yml run --rm selenium