Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thinreports/thinreports-rails-example
A Rails application example with Thinreports
https://github.com/thinreports/thinreports-rails-example
pdf rails thinreports
Last synced: 7 days ago
JSON representation
A Rails application example with Thinreports
- Host: GitHub
- URL: https://github.com/thinreports/thinreports-rails-example
- Owner: thinreports
- Created: 2021-01-16T18:29:45.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-17T20:33:41.000Z (12 months ago)
- Last Synced: 2024-03-26T02:30:24.841Z (9 months ago)
- Topics: pdf, rails, thinreports
- Language: Ruby
- Homepage: https://github.com/thinreports/thinreports
- Size: 653 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Thinreports Rails Example
[![CI](https://github.com/thinreports/thinreports-rails-example/workflows/CI/badge.svg)](https://github.com/thinreports/thinreports-rails-example/actions?query=branch%3Amaster)
A simple task management application using Thinreports and Rails.
![](doc/tasks_pdf.png)
## Environments
- Ruby 2.7, 3.0, 3.1, 3.2
- Rails 7.0
- [thinreports-generator](https://github.com/thinreports/thinreports-generator) 0.13.0
- [thinreports-rails](https://github.com/takeshinoda/thinreports-rails) 0.5.0An sample application with Rails 6.1 can be found in [the rails-6 branch](https://github.com/thinreports/thinreports-rails-example/tree/rails-6).
## Running this application
```
$ bundle install
$ bin/rails db:setup
$ bin/rails s
```Visit `http://localhost:3000`.
### Using docker-compose
```
$ docker-compose build
$ docker-compose run app bin/rails db:setup
$ docker-compose up -d
```