Compare commits

...

6 Commits

Author SHA1 Message Date
59bef990db Merge pull request 'chore/base-image' (#12) from chore/base-image into development
All checks were successful
Build and Push Development Docker Image / build-and-push (push) Successful in 1m5s
Run Unit and Integration Tests / test (push) Successful in 49s
Run Unit and Integration Tests / test (pull_request) Successful in 51s
Reviewed-on: #12
2025-08-01 17:39:37 +00:00
8acd79cf46 chore: Fixed pnpm build commands
All checks were successful
Run Unit and Integration Tests / test (push) Successful in 53s
Run Unit and Integration Tests / test (pull_request) Successful in 49s
2025-08-01 18:38:13 +01:00
8959dafdba chore: Updated docker build process to use new base-images
All checks were successful
Run Unit and Integration Tests / test (push) Successful in 52s
2025-08-01 17:46:33 +01:00
8b797d37a6 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
2025-07-26 13:29:18 +00:00
4eebdb596e feat: Updated readme
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
2025-07-26 14:12:33 +01:00
30284156e8 feat: Added images to site
All checks were successful
Run Unit and Integration Tests / test (push) Successful in 53s
2025-07-26 14:09:09 +01:00
4 changed files with 31 additions and 23 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
# create a new project in the current directory
npx sv create
npm install
# create a new project in my-app
npx sv create my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
Once you've created a project and installed dependencies with `pnpm install` (or `npm install` or `yarn`), start a development server:
```bash
npm run dev
pnpm run dev
```
```bash
# or start the server and open the app in a new browser tab
npm run dev -- --open
pnpm run dev -- --open
```
## Building
To create a production version of your app:
To create a production version of the app:
```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

View File

@@ -1,4 +1,4 @@
FROM node:lts-slim as build
FROM git.luke-else.co.uk/luke-else/nodejs:latest AS build
WORKDIR /app
@@ -6,15 +6,15 @@ COPY package*.json ./
RUN rm -rf node_modules
RUN rm -rf build
COPY . .
RUN npm install
RUN npm run build
RUN pnpm install
RUN pnpm run build
FROM node:lts-slim as run
FROM git.luke-else.co.uk/luke-else/nodejs:latest AS run
WORKDIR /app
COPY --from=build /app/package.json ./package.json
COPY --from=build /app/build ./build
RUN npm install --omit=dev
RUN pnpm install --prod
EXPOSE 3000
ENTRYPOINT [ "npm", "run", "start" ]
ENTRYPOINT [ "pnpm", "run", "start" ]