An interactive web application for exploring and visualizing the complete history of the universe from the Big Bang to present day through a zoomable timeline interface.
Create a .env
file in the root directory with the following variables:
# Environment (development, production, etc.)
VITE_ENV=development
# Enable debug mode (true/false)
PUBLIC_DEBUG=false
# Sentry authentication token for error tracking (optional)
SENTRY_AUTH_TOKEN=your_sentry_auth_token_here
svelte-llm provides developer documentation for Svelte in an LLM-ready format for coding with AI assistants like Cursor, so that the AI assitant knows about modern Svelte 5 syntax and patterns.
For this project, add the mention @https://svelte-llm.khromov.se/svelte-kit
when asking the AI assistant.
Lint and format the code with Biome with:
bunx biome check --write src
Once you've created a project and installed dependencies with bun install
(or npm install
), start a development server:
bun run dev
# or start the server and open the app in a new browser tab
bun run dev -- --open
To create a production version of your app:
bun run build
You can preview the production build with bun run preview
.
To deploy your app, you may need to install an adapter for your target environment.