Files
METARIUS/README.md
Luke Else 4eebdb596e
All checks were successful
Run Unit and Integration Tests / test (push) Successful in 49s
Run Unit and Integration Tests / test (pull_request) Successful in 53s
feat: Updated readme
2025-07-26 14:12:33 +01:00

47 lines
951 B
Markdown

## Welcome
This site is a clean wrapper around Aviation weather APIs to allow desk pilots to pre-brief flights effectively!
## Screenshots
<p align="center">
<img src="assets/images/main.png" width="20%">
<img src="assets/images/main-screen.png" width="40%">
</p>
## Getting Started
Get starting but installing all of the dependencies of the project.
```bash
npm install
```
Once you've created a project and installed dependencies with `pnpm install` (or `npm install` or `yarn`), start a development server:
```bash
pnpm run dev
```
```bash
# or start the server and open the app in a new browser tab
pnpm run dev -- --open
```
## Building
To create a production version of the app:
```bash
pnpm run build
```
You can preview the production build with `pnpm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. In this case, vite is used.