diff --git a/.github/contributing.md b/.github/contributing.md index dffd847a..ec344fc6 100644 --- a/.github/contributing.md +++ b/.github/contributing.md @@ -32,6 +32,64 @@ And in order to run the tests and linter checks: bundle exec rake ``` +### Beginner's Guide to Local Development Setup + +#### 1. Fork [mperham/sidekiq](https://github.com/mperham/sidekiq) project repository to your personal GitHub account + +#### 2. Click 'Clone or Download' button in personal sidekiq repository and copy HTTPS URL + +#### 3. On local machine, clone repository + +``` +git clone HTTPS-URL-FOR-PERSONAL-SIDEKIQ-REPOSITORY +``` + +#### 4. Navigate to your local machine's sidekiq directory + +``` +cd sidekiq/ +``` + +#### 5. Set remote upstream branch + +``` +git remote add upstream https://github.com/mperham/sidekiq.git +``` + +#### 6. Install necessary gems for development and start Redis server + +``` +bundle install +``` + +``` +redis-server +``` + +#### 7. Navivate to myapp (small Rails app inside Sidekiq repository used for development) + +``` +cd myapp/ +``` + +#### 8. Run required migration in order to launch Rails app + +``` +rake db:migrate +``` + +#### 9. Launch Rails app + +``` +rails s +``` + +#### 10. Create feature branch and start contributing! + +``` +git checkout -b new_feature_name +``` + ## Legal By submitting a Pull Request, you disavow any rights or claims to any changes diff --git a/web/views/busy.erb b/web/views/busy.erb index b7d38177..63ac082e 100644 --- a/web/views/busy.erb +++ b/web/views/busy.erb @@ -48,7 +48,7 @@ <%= t('Name') %> <%= t('Started') %> - <%= t('RSS') %>? + <%= t('RSS') %>? <%= t('Threads') %> <%= t('Busy') %>