KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
flex
★ 21
Open GitHub ↗
A simple Elixir InfluxDB client.
Download README (.md)
Explore Similar Repositories
marked
:
Markdown rendering as a service.
Deep-Embedded-Memory-Networks
:
https://arxiv.org/abs/1707.00836
wifimic
:
Transfer voice over the WI-FI with an ESP8266 and PIC18F25K22 microcontroller
cmb2-extension
:
This Repository is a extensions of CMB2 WordPress Plugin.
proof-of-concepts
:
Contains a set of PoCs in order to evaluate different technologies and strategies
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
flex
?
Download (.md)
# Flex A simple InfluxDB client. ## Installation Add to your deps ```elixir deps do [ ... {:flex, "~> 0.1"} ... ] end ```` And to your applications (pre Elixir 1.4) ```elixir def application do [ applications: [ ... :flex, ... ], ... ] end ``` ## Test You'll need Influx serving locally on port 8086 (see `config/config.exs`): ```Shell docker pull influxdb && \ docker run -d -p 8086:8086 -v influxdb:/var/lib/influxdb influxdb ``` Then go for a `mix test`.