Skip to content

Commit

Permalink
Merge branch 'main' into improvements/overall-performance
Browse files Browse the repository at this point in the history
  • Loading branch information
nas-tabchiche committed Mar 4, 2024
2 parents 95073e5 + ad799bf commit 5e02bc5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ Join our [open Discord community](https://discord.gg/qvkaMdQ8da) to interact wit

To run CISO Assistant locally in a straightforward way, you can use Docker compose.

0. Update docker

Make sure you have a recent version of docker (>= 25.0).

1. Clone the repository

```sh
Expand All @@ -73,7 +77,7 @@ When asked for, enter your email and password for your superuser.

You can then reach CISO Assistant using your web brower at [https://localhost:8443/](https://localhost:8443/)

For the following executions, use "docker-compose up" directly.
For the following executions, use "docker compose up" directly.

If you want to restart a fresh install, simply delete the db directory, where the database is stored.

Expand Down
12 changes: 0 additions & 12 deletions frontend/src/routes/(app)/libraries/[id=urn]/+layout.server.ts

This file was deleted.

1 change: 0 additions & 1 deletion frontend/src/routes/(app)/libraries/[id=urn]/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { error, type NumericRange } from '@sveltejs/kit';
import type { RequestHandler } from './$types';

export const GET: RequestHandler = async ({ fetch, url }) => {
console.log(url);
const endpoint = `${BASE_API_URL}${url.pathname}/${
url.searchParams ? '?' + url.searchParams.toString() : ''
}`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { error, type NumericRange } from '@sveltejs/kit';
import type { RequestHandler } from './$types';

export const GET: RequestHandler = async ({ fetch, url }) => {
console.log(url);
const endpoint = `${BASE_API_URL}${url.pathname}/${
url.searchParams ? '?' + url.searchParams.toString() : ''
}`;
Expand Down

0 comments on commit 5e02bc5

Please sign in to comment.