https://github.com/invalidusrname/weather_app
Rails 8 app that fetches weather forecasts
https://github.com/invalidusrname/weather_app
rails-application rails8 weather-api
Last synced: about 1 month ago
JSON representation
Rails 8 app that fetches weather forecasts
- Host: GitHub
- URL: https://github.com/invalidusrname/weather_app
- Owner: invalidusrname
- Created: 2025-10-03T07:20:14.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2026-05-09T20:18:53.000Z (about 1 month ago)
- Last Synced: 2026-05-09T22:23:52.792Z (about 1 month ago)
- Topics: rails-application, rails8, weather-api
- Language: Ruby
- Homepage: https://weather.invalid8.com
- Size: 311 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/invalidusrname/weather_app/actions/workflows/ci.yml)
# Weather App
A small app that tells you the weather for a zip code


## Setup
Install dependencies
```
./bin/setup
```
## Running
Run the app locally in development mode
```
./bin/dev
```
If you do not have the master.key setup or available, you'll need to register with [weatherapi.com](https://www.weatherapi.com/) and get an API key. Use `WEATHER_API_TOKEN` as an ENV var for fetching the weather:
```
WEATHER_API_TOKEN=88888CHANGEME8888888 ./bin/dev
```
## Tests
Run the specs
```
bundle exec rspec
```
## Deploying
deploys to weather.invalid8.com
```
DEPLOYMENTS_GITHUB_TOKEN='CHANGE_ME' ./bin/kamal deploy
```