Merge pull request 'feature/unit-testing' (#9) from feature/unit-testing into development
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m41s
Run Unit and Integration Tests / test (pull_request) Successful in 47s
Run Unit and Integration Tests / test (push) Successful in 54s

Reviewed-on: #9
This commit is contained in:
2025-07-26 13:29:18 +00:00
3 changed files with 25 additions and 17 deletions

View File

@@ -1,38 +1,46 @@
# sv ## Welcome
Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli). This site is a clean wrapper around Aviation weather APIs to allow desk pilots to pre-brief flights effectively!
## Creating a project ## Screenshots
If you're seeing this, you've probably already done this step. Congrats! <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 ```bash
# create a new project in the current directory npm install
npx sv create
# create a new project in my-app
npx sv create my-app
``` ```
## Developing Once you've created a project and installed dependencies with `pnpm install` (or `npm install` or `yarn`), start a development server:
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash ```bash
npm run dev pnpm run dev
```
```bash
# or start the server and open the app in a new browser tab # or start the server and open the app in a new browser tab
npm run dev -- --open pnpm run dev -- --open
``` ```
## Building ## Building
To create a production version of your app: To create a production version of the app:
```bash ```bash
npm run build pnpm run build
``` ```
You can preview the production build with `npm run preview`. You can preview the production build with `pnpm run preview`.
> To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment. > 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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

BIN
assets/images/main.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB