Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dashroshan/weather-app
🌨️ Find the detailed weather conditions of any place in the world
https://github.com/dashroshan/weather-app
mern weather weather-app weather-forecast
Last synced: 3 days ago
JSON representation
🌨️ Find the detailed weather conditions of any place in the world
- Host: GitHub
- URL: https://github.com/dashroshan/weather-app
- Owner: dashroshan
- Created: 2023-04-29T04:13:41.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-06-02T14:18:58.000Z (over 1 year ago)
- Last Synced: 2024-11-01T11:22:56.479Z (about 2 months ago)
- Topics: mern, weather, weather-app, weather-forecast
- Language: JavaScript
- Homepage: https://weather.dashroshan.com
- Size: 12.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Weather Search
Find weather of any place you want 🌨️
# Setup process
## Frontend
Run the below command in the _frontend_ folder.
```
npm install
```In _frontend/index.js_ swap the commented lines for _window.APIROOT_ to run frontend separately or through the backend server as needed.
If running through backend server, run the below command.
```
npm run build
```## Backend
Run the below command in the _backend_ folder.
```
npm install
```Create a _secrets.env_ file with below contents.
```
PORT = 4000
KEY =
```Start the server with the below command.
```
node index.js
```