Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
EdoanR committed Apr 13, 2024
1 parent 3fa90e0 commit 88a9091
Show file tree
Hide file tree
Showing 3 changed files with 209 additions and 172 deletions.
21 changes: 16 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h1 align="center">
<a href="https://zennos.github.io/sketch-weather/">
<a href="https://edoanr.github.io/sketch-weather/">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://i.imgur.com/xdqKQKV.gif">
<source media="(prefers-color-scheme: light)" srcset="https://i.imgur.com/G3Me4Ar.gif">
Expand All @@ -16,17 +16,19 @@
</div>

## How to use
You can start using it by acessing this [link](https://zennos.github.io/sketch-weather/).

You can start using it by acessing this [link](https://edoanr.github.io/sketch-weather/).

Type a city, state, or country into search bar and see the magic!

## Local Installation

Follow these steps to install and run the Sketch Weather locally:

1. Clone the repository to your local machine using the following command:

```
git clone https://github.com/Zennos/sketch-weather.git
git clone https://github.com/EdoanR/sketch-weather.git
```
2. Navigate to the project's directory:
Expand All @@ -40,7 +42,9 @@ Follow these steps to install and run the Sketch Weather locally:
```
npm install
```
or
```
yarn install
```
Expand All @@ -50,13 +54,15 @@ Follow these steps to install and run the Sketch Weather locally:
```
npm run dev
```
or
```
yarn run dev
```
This will launch the project in development mode, and you can access it by opening the link displayed in your console.
It will probably be running on `http://localhost:5173/sketch-weather/`.
This will launch the project in development mode, and you can access it by opening the link displayed in your console.
It will probably be running on `http://localhost:5173/sketch-weather/`.
## Building the project
Expand All @@ -65,7 +71,9 @@ To build, use the following command:
```
npm run build
```
or
```
yarn run build
```
Expand All @@ -76,12 +84,15 @@ You can check if the build is working by using the following command:
```
npm run preview
```
or
```
yarn run build
```
## Support me
<a href='https://nubank.com.br/pagar/xldsq/rfgW3dODQh' target='_blank'><img height='35' style='border:0px;height:46px;' src='https://logospng.org/download/pix/logo-pix-icone-512.png' border='0' alt='Pix' />
<a href='https://ko-fi.com/edoan' target='_blank'><img height='35' style='border:0px;height:46px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' alt='Buy Me a Coffee at ko-fi.com' />
[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/donate/?hosted_button_id=AP5M7UXBWR47C)
62 changes: 31 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
{
"name": "sketch-weather",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://zennos.github.io/sketch-weather/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"assets": "node generate-assets-json.js",
"test": "playwright test"
},
"dependencies": {
"@react-spring/web": "^9.7.2",
"font-awesome": "^4.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-spring": "^9.7.1",
"react-tooltip": "^5.11.1",
"sass": "^1.60.0"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"fs": "^0.0.1-security",
"glob": "^10.0.0",
"vite": "^4.2.3"
}
"name": "sketch-weather",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://edoanr.github.io/sketch-weather/",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"assets": "node generate-assets-json.js",
"test": "playwright test"
},
"dependencies": {
"@react-spring/web": "^9.7.2",
"font-awesome": "^4.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-spring": "^9.7.1",
"react-tooltip": "^5.11.1",
"sass": "^1.60.0"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"fs": "^0.0.1-security",
"glob": "^10.0.0",
"vite": "^4.2.3"
}
}
Loading

0 comments on commit 88a9091

Please sign in to comment.