Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kulpreet/rails-bitcoin
Simple RoR app for querying blockchain.info api for addresses
https://github.com/kulpreet/rails-bitcoin
Last synced: about 1 month ago
JSON representation
Simple RoR app for querying blockchain.info api for addresses
- Host: GitHub
- URL: https://github.com/kulpreet/rails-bitcoin
- Owner: kulpreet
- Created: 2020-07-28T20:39:36.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T20:11:02.000Z (almost 2 years ago)
- Last Synced: 2024-05-02T00:45:02.354Z (7 months ago)
- Language: Ruby
- Size: 243 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rails bitcoin address tracker
## Start the app
`docker-compose up`
### Web Application
The above will start rails application at `http://localhost:3000`
### Background jobs processor
The above will also start a redis/sidekiq background processor for
downloading transaction from blockchain info. The console for the
background processor is available at `http://localhost:3000/sidekiq`## Stop the app
`docker-compose down`
## Quick rebuild app
Without changes to Gemfile, Dockerfile or package.json
`docker-compose up --build`
## Compleletely rebuild
When changes made to above mentioned configuration files
`docker-compose run web bundle install && docker-compose up --build`