A simple web application with an analog clock on the home page. The clock returns the current time and updates it every second. Below is the date and time in digital format.
This app has been developed with create-react-app
git clone https://github.com/agustinbarbalase/weather-app.git
npm install
npm buildgit clone https://github.com/agustinbarbalase/weather-app.git
npm install
npm startThis application was deployed in Vercel with Github actions. Here is the action and here is the deployment page
name: Deploy on Vercel
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: amondnet/vercel-action@v20
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}This app has a MIT License