Skip to content

Commit

Permalink
Fix pipeline, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Steeven9 committed Jan 24, 2025
1 parent 6af53fd commit 33b9c62
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ This is a website for our D&D group where we handle maps, character data and muc

The frontend is exposed at <https://fenice2.soulsbros.ch>.

404 and 500 error logos by [SAWARATSUKI](https://github.com/SAWARATSUKI/KawaiiLogos)

404 and 500 art by [rui](https://twitter.com/namelessakikaze)

Dice logos by [Zegno](https://twitter.com/LazzariZeno)

### Dependencies

The website has a few integrations with some external services (100% self-hosted),
Expand All @@ -24,7 +18,7 @@ which are not strictly required to run the website but might be needed for some
Required to browse, create, and edit characters and campaigns
- **Keycloak** OIDC identity provider to allow users to login and store their characters.
Required to create and edit characters
- **S3 storage** to store the documents (we use MinIO, optional)
- **MinIO S3 storage** to store files such as documents and sounds (optional)
- **Gcal-API** to easily fetch the date of our next session from our shared calendar
(see [steeven9/Gcal-API](https://github.com/Steeven9/Gcal-API), optional)
- **Home Assistant** with the Alexa integration to announce whose turn it is in combat (optional)
Expand Down Expand Up @@ -88,3 +82,19 @@ Before submitting a pull request, please check that the build is still passing e
```bash
yarn build
```

## Credits

Error logos by [SAWARATSUKI](https://github.com/SAWARATSUKI/KawaiiLogos)

Art by [rui](https://twitter.com/namelessakikaze)

Dice logos by [Zeno](https://twitter.com/LazzariZeno)

And all our contributors here on GitHub:

<a href="https://github.com/Steeven9/Fenice2/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Steeven9/Fenice2" />
</a>

(made with [contributors-img](https://contrib.rocks))
5 changes: 4 additions & 1 deletion src/app/sounds/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const metadata: Metadata = {
};

export default async function SoundsPage() {
const sounds = await getFiles(`sounds`);
const sounds = await getFiles("sounds");
const parsedSounds: { name: string; URL: string }[] = [];

sounds.forEach(async (sound) => {
Expand All @@ -29,3 +29,6 @@ export default async function SoundsPage() {
</>
);
}

// disable pre-render at build time
export const dynamic = "force-dynamic";

0 comments on commit 33b9c62

Please sign in to comment.