Co-authored-by: terraputix <terraputix@mailbox.org> Reviewed-on: useweb/open-meteo-blue#4
36 lines
1.0 KiB
Markdown
36 lines
1.0 KiB
Markdown
# Open-Meteo Weather Web
|
|
|
|
An open-source, high-performance weather forecast website built with SvelteKit and powered by the [Open-Meteo APIs](https://open-meteo.com/).
|
|
|
|
## Goals
|
|
|
|
Our objective is to provide a comprehensive, user-friendly weather platform for end-users. We aim to offer professional-grade weather visualizations and detailed meteorological data while maintaining the transparency and community-driven nature of open-source software.
|
|
|
|
## Tech Stack
|
|
|
|
- **Framework**: [SvelteKit](https://kit.svelte.dev/)
|
|
- **Language**: [TypeScript](https://www.typescriptlang.org/)
|
|
- **Data Source**: [Open-Meteo API](https://open-meteo.com/)
|
|
- **Visualization**: [Apache Echarts](https://echarts.apache.org)
|
|
|
|
## Developing
|
|
|
|
Once you've cloned the project and installed dependencies with `npm install`:
|
|
|
|
```sh
|
|
npm run dev
|
|
|
|
# or start the server and open the app in a new browser tab
|
|
npm run dev -- --open
|
|
```
|
|
|
|
## Building
|
|
|
|
To create a production version of your app:
|
|
|
|
```sh
|
|
npm run build
|
|
```
|
|
|
|
You can preview the production build with `npm run preview`.
|