Skip to content

Commit

Permalink
docs: readme (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi authored Jul 18, 2024
1 parent 61da00c commit 58e8024
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,16 +269,29 @@ foreach ($pageable->withItemsPerPage(1000)->getPages() as $page) {
}
```

There is also a console command framework, so you can easily create console
commands to run your batch jobs. Your console commands will come with all these
features: informative output, batch process resuming, progress file, running the
command up to the specified duration, signal handling, and more.

## Demo

You can try the demo by running the following command:
You can try the web application demo by running the following command:

```bash
docker run --rm -p 8187:80 ghcr.io/rekalogika/rekapager:latest
```

Then access the demo at [http://localhost:8187](http://localhost:8187).

To run the demo of the batch console command, run the following command:

```bash
docker run --rm -it ghcr.io/rekalogika/rekapager:latest tests/bin/console app:simplebatch
```

Try adding the `--help` option to see all the available options.

## Acknowledgements

* [Use the Index, Luke](https://use-the-index-luke.com/no-offset)
Expand Down

0 comments on commit 58e8024

Please sign in to comment.