47 lines
951 B
Markdown
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.
|