https://github.com/k-phoen/post-to-pocketbook
Pet-project used to share blog posts to my PocketBook
https://github.com/k-phoen/post-to-pocketbook
Last synced: 26 days ago
JSON representation
Pet-project used to share blog posts to my PocketBook
- Host: GitHub
- URL: https://github.com/k-phoen/post-to-pocketbook
- Owner: K-Phoen
- License: mit
- Created: 2015-04-05T21:36:50.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-12T13:57:34.000Z (almost 10 years ago)
- Last Synced: 2024-05-01T20:13:02.432Z (12 months ago)
- Language: Ruby
- Size: 184 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Post-to-PocketBook
==================Little pet-project used to convert a URL (typically linking to a blog post) to
something readable by my PocketBook.It uses the Send-to-PocketBook feature to turn a URL into a PDF and send it to
your account.## Installation
### System libraries
libfontconfig is needed:
```sh
sudo apt-get install libfontconfig1
```redis is needed by Sidekiq:
```sh
sudo apt-get install redis-server
```### Development environment
Define the application' secrets:
```sh
cp config/secrets.yml{.dist,}
```Setup the database:
```sh
rake db:schema:load
rake db:migrate
```Launch the server:
```sh
rails server -b 0.0.0.0
```Launch Sidekiq
```sh
bundle exec sidekiq
```## License
This library is under the [MIT](LICENSE) license.