-
Clone the site.
git clone https://github.com/kdv24/OpenWeatherMapAPI.git
-
Clean up the clone.
Navigate into your new site’s directory and remove the package-lock.json.
cd QuickAPI/ rm package-lock.json
-
Start it up!
Stay in the site’s directory and start it up.
gatsby develop
The site is now running at `http://localhost:8000`!
-
See it live on the internet!
You can also find it deployed here:
https://openweathermapapi.netlify.com/?_ga=2.33883496.858960585.1552960403-151375750.1549239439
-
Troubleshooting
If you get a json error when you try to look at locahost:8000, try running
npm install
again now that you've removed the package-lock.json. Then start up the site again:npm install gatsby develop