Skip to content

deeheber/weather-site

Repository files navigation

Weather Site

Description

Inspired by isitsnowinginpdx.com. See blog post for more details.

This is a workflow that:

  1. Gets the current website status for a specified location
  2. Hits the open weather map API to get the current weather conditions
  3. If #1 and #2 are different 👉🏻 update the website with the current weather conditions

My deployment of this site is here.

The weather is happening site looks like this

Screenshot 2023-03-24 at 8 59 11 AM

The weather is not happening site looks like this

Screenshot 2023-03-24 at 8 58 11 AM

Technologies used

  1. AWS
  2. Node.js - specific version is in .nvmrc file
  3. TypeScript
  4. Open Weather API

Step Function State machine

stepfunctions_graph

Instructions to run

Prerequisites

  1. Install Node.js
  2. Ensure you have an AWS account, install the AWS CLI, and configure your credentials
  3. Get an API key from Open Weather Map

Steps

  1. Clone the repo
  2. Create a Secret in Secrets Manager titled weather-site-api-key with a plaintext secret value that is your OpenWeather API key. Save the secret ARN for step #2.
  3. Copy .env.example to .env. Fill in the missing SECRETS_EXTENSION_ARN using the commented URL in .env.example to grab the correct ARN for your region. Add your copied ARN from the secret you created in step #1 for WEATHER_SECRET_ARN. Uncomment and add an email address to ALERT_EMAIL, if you'd like to receive an email notification if the state machine has two failed executions within 1 hour (totally optional). Update any other values if you don't want the default values.
  4. Run npm install
  5. Run export AWS_PROFILE=<your_aws_profile>
    • Optional if you have a default profile or use --profile instead
  6. Run npm run deploy see note below about custom domains before running this
  7. If not using a custom domain, the generated CloudFront URL will output to the console. This is where your website is.

Custom Domain

  • If your domain is not hosted in Route53, you'll also need to point your nameservers at Route53. Directions here
  • Non Route53 hosted domain DNS validation is a bit tricky since we're also creating the hosted zone in the creation of this stack. Once the initial deploy starts and the hosted zone is created, I had to quickly updated my nameservers in my domain registrar to point at Route53 (nameservers found in the AWS console looking at the hosted zone - see prior link for more details) to prevent things from failing. This may or may not be your experience. Also note that certificate validation can take up to 30 min according to AWS, so be patient (mine took 20 min).
  • This will create the settings needed for both the www and non-www versions of your domain to point to the CloudFront distribution. The www version of the domain will redirect to the non-www version of the domain.
  • Certificates used for CloudFront have to be in the us-east-1 region. I could've set this up with cross region references, but decided to throw an error for now if a domain name is present and not deploying into us-east-1. Contributions are welcome to make this better!

Cleanup

If you want to delete the resources created by this project, run npm run destroy. Delete the secret that you created in the Secrets Manager console.

Tests

There's some super basic tests in the test folder. To run them, run npm run test.

Contributing

See CONTRIBUTING.md for more info on our guidelines.