website/README.md
kitten e0c22cccd2
Some checks failed
ci / ci (22, debian-trixie) (push) Has been cancelled
fix: remove random spaces
2026-06-07 02:40:54 +02:00

44 lines
No EOL
789 B
Markdown

# SPBR Website
<p align="center">
<img src="./.github/assets/banner.png" alt="Readme Bannerr" width="100%" />
</p>
### This is our official website's source code! Want to contribute? Submit a PR today!
> [!NOTE]
> Please note that some features will not be available, and we are constantly improving the website.
# Setup
Make sure to install the dependencies:
```bash
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
bun run dev
```
## Production
Build the website for production:
```bash
bun run build
```
If you encounter issues when building (eg. missing TS config files,) regenerate the stub files:
```bash
bun run nuxi prepare
```
Locally preview the prod build using Bun:
```bash
bun .output/server/index.mjs
```