···1+<img src="meta/logo.png" alt="The Bluroma logo, containing three rectangles with one rounded corner each shaped to look like an uppercase B and the Bluroma name written in the Convection font beside it." width="200">
2+3+## About
4+5+Bluroma is a client for [Bluesky](https://bsky.social) inspired by the [Pleroma](https://pleroma.social)/[Akkoma](https://akkoma.social) frotnend. Its goals are to provide a customizable experience designed for power users.
6+7+## Build for development
8+9+```sh
10+bun install
11+bun dev
12+```
13+14+## Build for production
15+16+```sh
17+bun install
18+bun run build
19+```
···1+/* @refresh reload */
2+import { render } from 'solid-js/web';
3+import 'solid-devtools';
4+5+import App from './App';
6+7+const root = document.getElementById('root');
8+9+if (import.meta.env.DEV && !(root instanceof HTMLElement)) {
10+ throw new Error(
11+ 'Root element not found. Did you forget to add it to your index.html? Or maybe the id attribute got misspelled?',
12+ );
13+}
14+15+render(() => <App />, root!);