Add default config.json

This commit is contained in:
Leonard Steppy 2025-02-12 14:16:17 +01:00
parent 2f672ecf27
commit 234f78aa40
3 changed files with 9 additions and 2 deletions

View File

@ -5,6 +5,7 @@ The webpage for Jana-Sessions (unofficial name), fully written in Rust.
## Building
The project currently uses leptos, so you'll want to install trunk (`cargo install trunk`).
For the build to work you'll need the `wasm32-unknown-unknown` target (`rustup target add wasm32-unknown-unknown`).
You can build the projekt with
```bash

3
config.json Normal file
View File

@ -0,0 +1,3 @@
{
"motd": "Hello world!"
}

View File

@ -1,5 +1,8 @@
<!DOCTYPE html>
<html>
<head></head>
<body></body>
<head>
<title>Band Sessions</title>
<link data-trunk rel="copy-file" href="config.json"/>
</head>
<body></body>
</html>