forked from 0o-de-lally/status
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1180cef
commit e622976
Showing
9,598 changed files
with
2,374,787 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DEBUG_URL=http://134.209.32.159:8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,197 @@ | ||
|
||
// this file is generated — do not edit it | ||
|
||
|
||
/// <reference types="@sveltejs/kit" /> | ||
|
||
/** | ||
* Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://kit.svelte.dev/docs/configuration#env) (if configured). | ||
* | ||
* _Unlike_ [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination. | ||
* | ||
* ```ts | ||
* import { API_KEY } from '$env/static/private'; | ||
* ``` | ||
* | ||
* Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don't have a value until the app is deployed: | ||
* | ||
* ``` | ||
* MY_FEATURE_FLAG="" | ||
* ``` | ||
* | ||
* You can override `.env` values from the command line like so: | ||
* | ||
* ```bash | ||
* MY_FEATURE_FLAG="enabled" npm run dev | ||
* ``` | ||
*/ | ||
declare module '$env/static/private' { | ||
export const DEBUG_URL: string; | ||
export const TERM_PROGRAM: string; | ||
export const NODE: string; | ||
export const NVM_CD_FLAGS: string; | ||
export const TERM: string; | ||
export const SHELL: string; | ||
export const TMPDIR: string; | ||
export const BOOGIE_EXE: string; | ||
export const TERM_PROGRAM_VERSION: string; | ||
export const ORIGINAL_XDG_CURRENT_DESKTOP: string; | ||
export const MallocNanoZone: string; | ||
export const ZDOTDIR: string; | ||
export const ZSH: string; | ||
export const npm_config_local_prefix: string; | ||
export const SCCACHE_ENDPOINT: string; | ||
export const USER: string; | ||
export const NVM_DIR: string; | ||
export const COMMAND_MODE: string; | ||
export const SSH_AUTH_SOCK: string; | ||
export const __CF_USER_TEXT_ENCODING: string; | ||
export const Z3_EXE: string; | ||
export const npm_execpath: string; | ||
export const PAGER: string; | ||
export const SCCACHE_REGION: string; | ||
export const LSCOLORS: string; | ||
export const PATH: string; | ||
export const _: string; | ||
export const npm_package_json: string; | ||
export const __CFBundleIdentifier: string; | ||
export const USER_ZDOTDIR: string; | ||
export const DOTNET_ROOT: string; | ||
export const PWD: string; | ||
export const RUSTC_WRAPPER: string; | ||
export const SCCACHE_BUCKET: string; | ||
export const P9K_SSH: string; | ||
export const npm_lifecycle_event: string; | ||
export const AWS_SECRET_ACCESS_KEY: string; | ||
export const P9K_TTY: string; | ||
export const LANG: string; | ||
export const VSCODE_GIT_ASKPASS_EXTRA_ARGS: string; | ||
export const XPC_FLAGS: string; | ||
export const XPC_SERVICE_NAME: string; | ||
export const SOLC_EXE: string; | ||
export const AWS_ACCESS_KEY_ID: string; | ||
export const VSCODE_INJECTION: string; | ||
export const SHLVL: string; | ||
export const HOME: string; | ||
export const VSCODE_GIT_ASKPASS_MAIN: string; | ||
export const MODE_0L: string; | ||
export const LESS: string; | ||
export const LOGNAME: string; | ||
export const VSCODE_GIT_IPC_HANDLE: string; | ||
export const DIEM_FORGE_NODE_BIN_PATH: string; | ||
export const CVC5_EXE: string; | ||
export const npm_config_user_agent: string; | ||
export const VSCODE_GIT_ASKPASS_NODE: string; | ||
export const GIT_ASKPASS: string; | ||
export const COLORTERM: string; | ||
export const npm_node_execpath: string; | ||
export const NODE_ENV: string; | ||
} | ||
|
||
/** | ||
* Similar to [`$env/static/private`](https://kit.svelte.dev/docs/modules#$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code. | ||
* | ||
* Values are replaced statically at build time. | ||
* | ||
* ```ts | ||
* import { PUBLIC_BASE_URL } from '$env/static/public'; | ||
* ``` | ||
*/ | ||
declare module '$env/static/public' { | ||
|
||
} | ||
|
||
/** | ||
* This module provides access to runtime environment variables, as defined by the platform you're running on. For example if you're using [`adapter-node`](https://github.com/sveltejs/kit/tree/master/packages/adapter-node) (or running [`vite preview`](https://kit.svelte.dev/docs/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://kit.svelte.dev/docs/configuration#env) (if configured). | ||
* | ||
* This module cannot be imported into client-side code. | ||
* | ||
* ```ts | ||
* import { env } from '$env/dynamic/private'; | ||
* console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE); | ||
* ``` | ||
* | ||
* > In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter. | ||
*/ | ||
declare module '$env/dynamic/private' { | ||
export const env: { | ||
DEBUG_URL: string; | ||
TERM_PROGRAM: string; | ||
NODE: string; | ||
NVM_CD_FLAGS: string; | ||
TERM: string; | ||
SHELL: string; | ||
TMPDIR: string; | ||
BOOGIE_EXE: string; | ||
TERM_PROGRAM_VERSION: string; | ||
ORIGINAL_XDG_CURRENT_DESKTOP: string; | ||
MallocNanoZone: string; | ||
ZDOTDIR: string; | ||
ZSH: string; | ||
npm_config_local_prefix: string; | ||
SCCACHE_ENDPOINT: string; | ||
USER: string; | ||
NVM_DIR: string; | ||
COMMAND_MODE: string; | ||
SSH_AUTH_SOCK: string; | ||
__CF_USER_TEXT_ENCODING: string; | ||
Z3_EXE: string; | ||
npm_execpath: string; | ||
PAGER: string; | ||
SCCACHE_REGION: string; | ||
LSCOLORS: string; | ||
PATH: string; | ||
_: string; | ||
npm_package_json: string; | ||
__CFBundleIdentifier: string; | ||
USER_ZDOTDIR: string; | ||
DOTNET_ROOT: string; | ||
PWD: string; | ||
RUSTC_WRAPPER: string; | ||
SCCACHE_BUCKET: string; | ||
P9K_SSH: string; | ||
npm_lifecycle_event: string; | ||
AWS_SECRET_ACCESS_KEY: string; | ||
P9K_TTY: string; | ||
LANG: string; | ||
VSCODE_GIT_ASKPASS_EXTRA_ARGS: string; | ||
XPC_FLAGS: string; | ||
XPC_SERVICE_NAME: string; | ||
SOLC_EXE: string; | ||
AWS_ACCESS_KEY_ID: string; | ||
VSCODE_INJECTION: string; | ||
SHLVL: string; | ||
HOME: string; | ||
VSCODE_GIT_ASKPASS_MAIN: string; | ||
MODE_0L: string; | ||
LESS: string; | ||
LOGNAME: string; | ||
VSCODE_GIT_IPC_HANDLE: string; | ||
DIEM_FORGE_NODE_BIN_PATH: string; | ||
CVC5_EXE: string; | ||
npm_config_user_agent: string; | ||
VSCODE_GIT_ASKPASS_NODE: string; | ||
GIT_ASKPASS: string; | ||
COLORTERM: string; | ||
npm_node_execpath: string; | ||
NODE_ENV: string; | ||
[key: `PUBLIC_${string}`]: undefined; | ||
[key: `${string}`]: string | undefined; | ||
} | ||
} | ||
|
||
/** | ||
* Similar to [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://kit.svelte.dev/docs/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code. | ||
* | ||
* Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests — when possible, use `$env/static/public` instead. | ||
* | ||
* ```ts | ||
* import { env } from '$env/dynamic/public'; | ||
* console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE); | ||
* ``` | ||
*/ | ||
declare module '$env/dynamic/public' { | ||
export const env: { | ||
[key: `PUBLIC_${string}`]: string | undefined; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export { matchers } from './matchers.js'; | ||
|
||
export const nodes = [ | ||
() => import('./nodes/0'), | ||
() => import('./nodes/1'), | ||
() => import('./nodes/2') | ||
]; | ||
|
||
export const server_loads = []; | ||
|
||
export const dictionary = { | ||
"/": [2] | ||
}; | ||
|
||
export const hooks = { | ||
handleError: (({ error }) => { console.error(error) }), | ||
}; | ||
|
||
export { default as root } from '../root.svelte'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const matchers = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import * as universal from "../../../../src/routes/+layout.ts"; | ||
export { universal }; | ||
export { default as component } from "../../../../node_modules/@sveltejs/kit/src/runtime/components/layout.svelte"; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as component } from "../../../../src/routes/+page.svelte"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as component } from "../../../../src/routes/about/+page.svelte"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
export { matchers } from './matchers.js'; | ||
|
||
export const nodes = [ | ||
() => import('./nodes/0'), | ||
() => import('./nodes/1'), | ||
() => import('./nodes/2') | ||
]; | ||
|
||
export const server_loads = []; | ||
|
||
export const dictionary = { | ||
"/": [2] | ||
}; | ||
|
||
export const hooks = { | ||
handleError: (({ error }) => { console.error(error) }), | ||
}; | ||
|
||
export { default as root } from '../root.svelte'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const matchers = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import * as universal from "../../../../src/routes/+layout.ts"; | ||
export { universal }; | ||
export { default as component } from "../../../../node_modules/@sveltejs/kit/src/runtime/components/layout.svelte"; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as component } from "../../../../src/routes/+page.svelte"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { default as component } from "../../../../src/routes/about/+page.svelte"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<!-- This file is generated by @sveltejs/kit — do not edit it! --> | ||
<script> | ||
import { setContext, afterUpdate, onMount, tick } from 'svelte'; | ||
import { browser } from '$app/environment'; | ||
// stores | ||
export let stores; | ||
export let page; | ||
export let constructors; | ||
export let components = []; | ||
export let form; | ||
export let data_0 = null; | ||
export let data_1 = null; | ||
if (!browser) { | ||
setContext('__svelte__', stores); | ||
} | ||
$: stores.page.set(page); | ||
afterUpdate(stores.page.notify); | ||
let mounted = false; | ||
let navigated = false; | ||
let title = null; | ||
onMount(() => { | ||
const unsubscribe = stores.page.subscribe(() => { | ||
if (mounted) { | ||
navigated = true; | ||
tick().then(() => { | ||
title = document.title || 'untitled page'; | ||
}); | ||
} | ||
}); | ||
mounted = true; | ||
return unsubscribe; | ||
}); | ||
</script> | ||
|
||
{#if constructors[1]} | ||
<svelte:component this={constructors[0]} bind:this={components[0]} data={data_0}> | ||
<svelte:component this={constructors[1]} bind:this={components[1]} data={data_1} {form} /> | ||
</svelte:component> | ||
{:else} | ||
<svelte:component this={constructors[0]} bind:this={components[0]} data={data_0} {form} /> | ||
{/if} | ||
|
||
{#if mounted} | ||
<div id="svelte-announcer" aria-live="assertive" aria-atomic="true" style="position: absolute; left: 0; top: 0; clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap; width: 1px; height: 1px"> | ||
{#if navigated} | ||
{title} | ||
{/if} | ||
</div> | ||
{/if} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
import root from '../root.svelte'; | ||
import { set_building } from '__sveltekit/environment'; | ||
import { set_assets } from '__sveltekit/paths'; | ||
import { set_private_env, set_public_env } from '../../../node_modules/@sveltejs/kit/src/runtime/shared-server.js'; | ||
|
||
export const options = { | ||
app_template_contains_nonce: false, | ||
csp: {"mode":"auto","directives":{"upgrade-insecure-requests":false,"block-all-mixed-content":false},"reportOnly":{"upgrade-insecure-requests":false,"block-all-mixed-content":false}}, | ||
csrf_check_origin: true, | ||
track_server_fetches: false, | ||
embedded: false, | ||
env_public_prefix: 'PUBLIC_', | ||
env_private_prefix: '', | ||
hooks: null, // added lazily, via `get_hooks` | ||
preload_strategy: "modulepreload", | ||
root, | ||
service_worker: false, | ||
templates: { | ||
app: ({ head, body, assets, nonce, env }) => "<!doctype html>\n<html lang=\"en\" class=\"uk-background-muted\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n " + head + "\n </head>\n <body class=\"uk-margin-top uk-margin-left uk-margin-right\">\n <div>" + body + "</div>\n </body>\n</html>\n", | ||
error: ({ status, message }) => "<!DOCTYPE html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\" />\n\t\t<title>" + message + "</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\t--bg: white;\n\t\t\t\t--fg: #222;\n\t\t\t\t--divider: #ccc;\n\t\t\t\tbackground: var(--bg);\n\t\t\t\tcolor: var(--fg);\n\t\t\t\tfont-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,\n\t\t\t\t\tUbuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tjustify-content: center;\n\t\t\t\theight: 100vh;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t.error {\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t\tmax-width: 32rem;\n\t\t\t\tmargin: 0 1rem;\n\t\t\t}\n\n\t\t\t.status {\n\t\t\t\tfont-weight: 200;\n\t\t\t\tfont-size: 3rem;\n\t\t\t\tline-height: 1;\n\t\t\t\tposition: relative;\n\t\t\t\ttop: -0.05rem;\n\t\t\t}\n\n\t\t\t.message {\n\t\t\t\tborder-left: 1px solid var(--divider);\n\t\t\t\tpadding: 0 0 0 1rem;\n\t\t\t\tmargin: 0 0 0 1rem;\n\t\t\t\tmin-height: 2.5rem;\n\t\t\t\tdisplay: flex;\n\t\t\t\talign-items: center;\n\t\t\t}\n\n\t\t\t.message h1 {\n\t\t\t\tfont-weight: 400;\n\t\t\t\tfont-size: 1em;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\t\t\t@media (prefers-color-scheme: dark) {\n\t\t\t\tbody {\n\t\t\t\t\t--bg: #222;\n\t\t\t\t\t--fg: #ddd;\n\t\t\t\t\t--divider: #666;\n\t\t\t\t}\n\t\t\t}\n\t\t</style>\n\t</head>\n\t<body>\n\t\t<div class=\"error\">\n\t\t\t<span class=\"status\">" + status + "</span>\n\t\t\t<div class=\"message\">\n\t\t\t\t<h1>" + message + "</h1>\n\t\t\t</div>\n\t\t</div>\n\t</body>\n</html>\n" | ||
}, | ||
version_hash: "1g81s58" | ||
}; | ||
|
||
export function get_hooks() { | ||
return {}; | ||
} | ||
|
||
export { set_assets, set_building, set_private_env, set_public_env }; |
Binary file not shown.
Empty file.
Oops, something went wrong.