Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nemuba/learn-activejobs-rails
https://github.com/nemuba/learn-activejobs-rails
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nemuba/learn-activejobs-rails
- Owner: nemuba
- Created: 2020-08-02T18:49:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T21:55:24.000Z (almost 2 years ago)
- Last Synced: 2023-03-05T21:56:35.450Z (almost 2 years ago)
- Language: Ruby
- Size: 62.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dominando o Active Jobs do rails
Mini curso de active-jobs ministrado pela [onebitcode.com](https://www.onebitcode.com).
Ferramentas utilizadas:
* Ruby on Rails
* Sqlite3
* Redis
* Sidekiq
Para rodar o projeto basta:
* instalar o redis na sua maquina(geralmente usando docker).
* rodar o comando bundle install para instalar as gems:
```sh
bundle install
```* logo em seguida subir o projeto:
```sh
rails server
```* subir o servidor do redis (caso tenha subido um docker separado nem será preciso desse comando):
```sh
redis-server
```* e por fim subir o sidekiq:
```sh
bundle exec sidekiq -q reports -c 3
```e bons estudos!