aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-11-17 07:59:59 +0100
committerivarlovlie <git@ivarlovlie.no>2022-11-17 07:59:59 +0100
commit63e849c4dbb3e3c8771d14a309edf5083c672f74 (patch)
tree32b5c2194bc206e2e1c0db97efe3234b7a2b00ff
parente351ffdd2adf39c9ba11bbfcda7835da20acba5f (diff)
downloadgreatoffice-63e849c4dbb3e3c8771d14a309edf5083c672f74.tar.xz
greatoffice-63e849c4dbb3e3c8771d14a309edf5083c672f74.zip
feat: Update README.md
-rw-r--r--README.md8
-rw-r--r--code/app/src/routes/(main)/(public)/reset-password/+page.svelte1
2 files changed, 4 insertions, 5 deletions
diff --git a/README.md b/README.md
index d1b2166..6202715 100644
--- a/README.md
+++ b/README.md
@@ -19,11 +19,11 @@ Everything is WIP, but the platform is regularly updated at [https://dev.greatof
## code/api
-Contains an ASP.NET Core Web API project using the [ApiEndpoints](https://github.com/ardalis/ApiEndpoints) paradigm.
+Contains a ASP.NET Core Web API, each route is specified in the Endpoints directory with a single file per route.
It handles all data operations (except administrative operations) for the platform.
-To run it you need .NET 6 and a PostgreSQL instance.
+To run it you need .NET 7 and a PostgreSQL instance.
### Database schemas
@@ -72,7 +72,7 @@ A helper script is available at [`code/api/build_and_push.sh`](code/api/build_an
## code/app
-Contains an svelte kit application that acts as the frontend for greatoffice.
+Contains a svelte kit application that acts as the frontend for greatoffice.
Noteworthy information:
@@ -92,4 +92,4 @@ To run the app in development mode use `pnpm run dev`.
To build a production build use `pnpm run build`, the production build is placed in the `build` folder.
-> Use `node build/index.js` (minimum v16) to run the app \ No newline at end of file
+> Use `node build/index.js` (minimum v16) to run the app
diff --git a/code/app/src/routes/(main)/(public)/reset-password/+page.svelte b/code/app/src/routes/(main)/(public)/reset-password/+page.svelte
index 3bdba80..4d0288f 100644
--- a/code/app/src/routes/(main)/(public)/reset-password/+page.svelte
+++ b/code/app/src/routes/(main)/(public)/reset-password/+page.svelte
@@ -40,7 +40,6 @@
if (response.knownProblem.title) formError.title = response.knownProblem.title;
if (response.knownProblem.subtitle) formError.subtitle = response.knownProblem.subtitle;
for (const error of response.knownProblem.errors) {
-
}
}
}