A streamlined solution for deploying SvelteKit applications to Cloudflare Workers.
graph TD
A[workerwizard-sveltekit] --> B[src]
A --> C[static]
A --> D[.vscode]
A --> E[.svelte-kit]
A --> F[.wrangler]
B --> G[routes]
B --> H[lib]
B --> I[app.css]
B --> J[app.d.ts]
B --> K[app.html]
G --> L[+page.svelte]
G --> M[+layout.svelte]
G --> N[about/+page.svelte]
G --> O[Header.svelte]
H --> P[components/ui]
H --> Q[utils]
P --> R[button]
P --> S[card]
P --> T[tooltip]
P --> U[avatar]
Clone the repository:
git clone https://github.com/CLQuantizer/workerwizard-sveltekit.git
cd workerwizard-sveltekit
Install dependencies:
npm install
Configure your environment:
cp .env.example .env
# Edit .env with your Cloudflare credentials
Start the development server:
npm run dev
Deploy to Cloudflare Workers:
npm run deploy
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.