This directory contains the SvelteKit web application component of the CraftSpace project.
BackSpace serves as:
- The web host for the Unity WebGL client
- The data processing pipeline for Internet Archive collections
- The API server for dynamic queries and collection access
# Install dependencies
npm install
# Start development server (runs on http://localhost:5173)
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
# Build for production
npm run build
For complete documentation, see README-BACKSPACE.md in the repository root.
scripts/
: Collection processing scripts and data pipelinesrc/
: SvelteKit application source codestatic/
: Static assets including collection data and Unity build
Everything you need to build a Svelte project, powered by create-svelte
.
Once you've installed dependencies with npm install
, start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.