In order to get you started writing docs/enhancing our landing page, please make sure you follow these steps:
We use bun as our bundler. For the installation, proceed as follows, depending on your operating system:
curl -fsSL https://bun.com/install | bashpowershell -c "irm bun.sh/install.ps1|iex"npm install -g bunYou may need to restart your terminal/command line after installation to make sure bun is availabel for use.
If you encounter any issues, feel free to consult the bun documentation or ask in the GC :)
We make use of various libraries to make our life easier (duh). Before starting development or behold - trying to start the project, please install all dependencies using the following command:
bun iWhile you are technicall ready to start/build the frontend, you might want to make your development experience better by following these vs code integrations:
- Install the Biome extension for code linting / formatting support
- Install the TailwindCSS IntelliSense extension for tailwind class intellisense
- Install the React/Redux/React-Native snippets extension which allows you to automatically generate boilerplate component code by typing e.g.
tsrfce
To run the frontend with hot-reloading, please run:
bun run devIf you want to create a final build, run:
bun run buildand then start your production build as follows:
bun run start