https://github.com/chriscarini/crypto-to-influxdb
Send Helium information to InfluxDB
https://github.com/chriscarini/crypto-to-influxdb
Last synced: 6 months ago
JSON representation
Send Helium information to InfluxDB
- Host: GitHub
- URL: https://github.com/chriscarini/crypto-to-influxdb
- Owner: ChrisCarini
- Created: 2021-02-27T04:50:09.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-10T16:02:35.000Z (6 months ago)
- Last Synced: 2025-04-10T17:43:10.249Z (6 months ago)
- Language: Python
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# crypto-to-influxdb
Send cryptocurrency information to InfluxDB. Originally intended for Helium (HNT), it was easy enough to expand to a few
other cryptocurrencies.## Developing Quick Start
The below commands to get the basic setup for developing on this repository.
```shell
python3 -m venv venv
ln -s venv/bin/activate activate
source activate
pip install --upgrade pip
pip install -r requirements.txt
```## Building the `Dockerfile`
```shell
docker-compose -f docker-compose.yml build
docker-compose -f docker-compose.yml up -d
```## Publish the Docker image to Docker Hub
```shell
docker login --username chriscariniVERSION=0.0.1
IMAGE="chriscarini/crypto-to-influxdb"# Give the image two tags; one version, and one `latest`.
docker build -t "$IMAGE:latest" -t "$IMAGE:$VERSION" .sudo docker push "$IMAGE:latest" && docker push "$IMAGE:$VERSION"
```