···99## -> Rewrite '25'
10101111> Completely rewriting this project. I am relatively new
1212-> to Lustre and to websockets and to Rocket, but wanna try
1212+> to Lustre and to websockets and to Rocket, but want to try
1313> all of them out and make them succeed in this rewrite.
14141515### Environment variables
···1919`$LUMINAFOLDER/.env`.
20202121| NAME | DEFAULT | FOR |
2222-| -------------------------- | -------------------- | -------------------------------------------------------------------------------------------------------------------------- |
2222+|----------------------------|----------------------|----------------------------------------------------------------------------------------------------------------------------|
2323| `LUMINA_POSTGRES_PORT` | `5432` | The port to contact the database on. |
2424| `LUMINA_POSTGRES_HOST` | `localhost` | The address to contact the database on. |
2525| `LUMINA_POSTGRES_USERNAME` | `lumina` | The username to log in to the database with. |
+1-4
client/src/lumina_client/dom_ffi.ts
···77 return "light";
88}
991010-export function classfoundintree(
1111- starting_element: HTMLElement,
1212- className: string,
1313-): boolean {
1010+export function classfoundintree(starting_element: HTMLElement, className: string): boolean {
1411 let element: HTMLElement | null = starting_element;
1512 do {
1613 if (element.classList && element.classList.contains(className)) {