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

Version/0.9.0 #42

Merged
merged 3 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions docs/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ Solid on Rails comes with a built in CLI which supports:
* `solid-on-rails db:revert` Reverting migrations
* `solid-on-rails queues:deleteAll` Deleting all background job queues
* `solid-on-rails queues:delete` Deleting specific background job queues
* `solid-on-rails queues:removeCompleted` Removes all completed jobs from a queue

You may prefer to add helpers in your `package.json` to set the configuration options for each of these commands like so:
```json
Expand All @@ -164,6 +165,7 @@ You may prefer to add helpers in your `package.json` to set the configuration op
"db:revert": "npx solid-on-rails db:revert -c ./config/storage-accessor.json -m .",
"queues:deleteAll": "npx solid-on-rails queues:deleteAll -c ./config/queue-accessor.json -m .",
"queues:delete": "npx solid-on-rails queues:delete -c ./config/queue-accessor.json -m .",
"queues:removeCompleted": "npx solid-on-rails queues:removeCompleted -c ./config/queue-accessor.json -m .",
"start": "npx solid-on-rails -c ./config/test.json -m .",
...
}
Expand Down
Loading