Skip to content

Commit

Permalink
now working
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 21, 2024
1 parent f80fe4e commit 2f5e6bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/loculus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ disableBackend: false
disablePreprocessing: false
siloImportLimitSeconds: 3600
accessionPrefix: "LOC_"
name: "CoolSite"
name: "CoolSite" # TODO: revert before merge
instances:
dummy-organism:
schema:
Expand Down
3 changes: 3 additions & 0 deletions website/src/types/runtimeConfig.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { z } from 'zod';

export const name = z.string().min(1);

const serviceUrls = z.object({
backendUrl: z.string(),
lapisUrls: z.record(z.string(), z.string()),
Expand All @@ -17,5 +19,6 @@ export const serverConfig = serviceUrls.merge(
export const runtimeConfig = z.object({
public: serviceUrls,
serverSide: serverConfig,
name,
});
export type RuntimeConfig = z.infer<typeof runtimeConfig>;

0 comments on commit 2f5e6bb

Please sign in to comment.