https://github.com/doerfli/shelly-temp
Webapplication to receive temperature and humidity readings from shelly and show on webpage
https://github.com/doerfli/shelly-temp
hacktoberfest ruby-on-rails shelly shelly-ht smarthome tailwindcss temperature-monitoring webapp
Last synced: 2 months ago
JSON representation
Webapplication to receive temperature and humidity readings from shelly and show on webpage
- Host: GitHub
- URL: https://github.com/doerfli/shelly-temp
- Owner: doerfli
- Created: 2021-06-21T19:30:15.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2026-03-28T19:22:13.000Z (3 months ago)
- Last Synced: 2026-03-29T16:08:28.954Z (3 months ago)
- Topics: hacktoberfest, ruby-on-rails, shelly, shelly-ht, smarthome, tailwindcss, temperature-monitoring, webapp
- Language: Ruby
- Homepage:
- Size: 1.38 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shelly-temp
This is a simple ruby on rails webapplication to received URL action event from a Shelly H&T device and display the temperature on a webpage.
## Start application
Create and migrate database
```
bundle exec rake db:create
bundle exec rake db:migrate
```
Run server
```
bundle exec rails start
```
## Start development server
Start dev-server, css build, js build
```
bin/dev
yarn build:css --watch
yarn build --watch
```
## Configuration
Point your shelly to `http://:/measurements/new`
**Important** Shelly does not support https targets!!!
Once at least one event was sent, open a webbrowser to `http://:/displays/`
## Test request
```
curl "http://localhost:3000/measurements/new?id=device01&temp=21.23&hum=58.34"
```