diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Editor-based HTTP Client requests
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/evilthings.iml b/.idea/evilthings.iml
new file mode 100644
index 0000000..5e764c4
--- /dev/null
+++ b/.idea/evilthings.iml
@@ -0,0 +1,9 @@
+
+
- A mantle thing for software things m* does. Could possibly, but unlikely, be extended in the future. -
\ No newline at end of file diff --git a/src/routes/+server.ts b/src/routes/+server.ts deleted file mode 100644 index 36aa1dc..0000000 --- a/src/routes/+server.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { error } from "@sveltejs/kit"; - -/** @type {import('./$types').RequestHandler} */ -export function GET({ url }: { url: URL }) { - const min = Number(url.searchParams.get("min") ?? "0"); - const max = Number(url.searchParams.get("max") ?? "11"); - - const d = max - min; - - if (isNaN(d) || d < 0) { - throw error( - 400, - "min and max must be numbers, and min must be less than max" - ); - } - - const random = min + Math.random() * d; - - return new Response(String(random)); -} diff --git a/static/favicon.png b/static/favicon.png deleted file mode 100644 index 825b9e6..0000000 Binary files a/static/favicon.png and /dev/null differ diff --git a/svelte.config.js b/svelte.config.js deleted file mode 100644 index e74438f..0000000 --- a/svelte.config.js +++ /dev/null @@ -1,17 +0,0 @@ -import adapter from "@bun-community/sveltekit-adapter-bun"; -import preprocess from "svelte-preprocess"; - -/** @type {import('@sveltejs/kit').Config} */ -const config = { - // Consult https://github.com/sveltejs/svelte-preprocess - // for more information about preprocessors - preprocess: preprocess(), - - kit: { - adapter: adapter({ - dynamic_origin: true, - }), - }, -}; - -export default config; diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 6ae0c8c..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "extends": "./.svelte-kit/tsconfig.json", - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "resolveJsonModule": true, - "skipLibCheck": true, - "sourceMap": true, - "strict": true - } - // Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias - // - // If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes - // from the referenced tsconfig.json - TypeScript does not merge them in -} diff --git a/vite.config.ts b/vite.config.ts deleted file mode 100644 index efc8757..0000000 --- a/vite.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { sveltekit } from "@sveltejs/kit/vite"; -import type { UserConfig } from "vite"; - -const config: UserConfig = { - plugins: [sveltekit()], -}; - -export default config;