No description
- Svelte 63.6%
- TypeScript 30.6%
- CSS 3.5%
- HTML 1.3%
- JavaScript 0.5%
- Other 0.5%
| docs | ||
| scripts | ||
| src | ||
| static | ||
| .dockerignore | ||
| .gitignore | ||
| .npmrc | ||
| .prettierignore | ||
| .prettierrc | ||
| bun.lock | ||
| Dockerfile | ||
| nginx.conf | ||
| package.json | ||
| README.md | ||
| svelte.config.js | ||
| tsconfig.json | ||
| vite.config.ts | ||
Reseam website
The static site at reseam.app: landing page, patch downloads, announcements, and the documentation for the engine, CLI, and API. SvelteKit with adapter-static, served by nginx.
Developing
bun install
bun run dev
dev and build first run docs:fetch, which pulls the documentation sources from the engine, CLI, and API repositories and renders them into src/lib/docs/generated/. To render docs from sibling checkouts on disk instead, run bun run docs:local.
The site reads the Reseam API at PUBLIC_API_URL (default https://api.reseam.app). Set it in .env to build against another instance; visitors can also override it at runtime from the settings dialog.
Building
bun run build
bun run preview
Dockerfile builds the site and serves it with the nginx.conf beside it.
Checks
bun run check