55602e359a
Currently the SSH and GPG keys are hardcoded. In a refactoring those will be passed down as prop to the component. But I would need to query Vervis to receive the real keys. Likewise I am not talking to Vervis when updating (remove, add) a key. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de> |
||
---|---|---|
.. | ||
lib | ||
routes | ||
app.d.ts | ||
app.html | ||
app.postcss | ||
hooks.server.ts | ||
README.md | ||
theme.postcss |
Source
These files here provide the server and client code of Anvil. We try to use TypeScript for an additional level of understandability. However, components cannot use TypeScript and have to be written in JavaScript in order to work with the component library. Otherwise their annotation cannot be parsed.
lib
- Files that can be referenced by$lib
. We use them for Svelte components, internationalisation and server-only modules. This approach allows us to also surface a component library.routes
- SvelteKit routingREADME.md
- This document.app.d.ts
- SvelteKit App type definitionsapp.html
- SvelteKit page templateapp.postcss
- Global styles.hooks.server.ts
- SvelteKit server hookstheme.postcss
- Theming.