A simple interactive weather web application that references the Visual Crossing Weather API
Sign up an account on Visual Crossing to get your API key/token
NOTE: After cloning this git repo, rename the .env.example to .env found in the root folder of the project
After acquiring the Weather API key/token, go to the .env file located on the root of the project and put your API key/token here:
VITE_WEATHER_API=[PLACE API KEY HERE]
Clone the repository to your preferred directory and Change Directory to the location of the cloned repository
cd [folder name]
Run the following commands
npm install && composer update --no-scripts
php artisan key:generate
Open 2 terminals and run these commands separately each terminal
Terminal 1
php artisan serve
Terminal 2
npm run dev