echo "https://dl-cdn.alpinelinux.org/alpine/latest-stable/main" >> /etc/apk/repositoriesapk update && apk upgraderestart app
echo "https://dl-cdn.alpinelinux.org/alpine/latest-stable/main" >> /etc/apk/repositoriesapk update && apk upgraderestart app
| { | |
| "schema": "https://json.schemastore.org/tsconfig.json", | |
| "display": "Default", | |
| "compilerOptions": { | |
| "strict": true, | |
| "noEmit": true, | |
| "allowJs": true, | |
| "checkJs": true, | |
| // add DOM and DOM.Iterable if working with browser | |
| "lib": ["ESNext"], |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Location" content="https://union.build" /> | |
| <meta http-equiv="refresh" content="0; URL=https://union.build" /> | |
| </head> | |
| <body/> | |
| </html> |
| export const reactiveQueryArgs = <T>(cb: () => T) => { | |
| const store = writable<T>(); | |
| $effect.pre(() => { | |
| store.set(cb()); | |
| }); | |
| return store; | |
| }; |
| sudo apt update --yes | |
| sudo apt upgrade --yes | |
| sudo apt install --yes \ | |
| curl \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| software-properties-common | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg \ |
| echo "http://dl-cdn.alpinelinux.org/alpine/v3.20/main" > /etc/apl/repositories; | |
| echo "http://dl-cdn.alpinelinux.org/alpine/v3.20/community" >> /etc/apl/repositories; | |
| echo "http://dl-cdn.alpinelinux.org/alpine/edge/main" >> /etc/apl/repositories; | |
| echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apl/repositories; | |
| echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apl/repositories; | |
| echo "http://dl-cdn.alpinelinux.org/alpine/latest-stable/main" >> /etc/apl/repositories; | |
| echo "http://dl-cdn.alpinelinux.org/alpine/latest-stable/community" >> /etc/apk/repositories; | |
| apk update |
| <html lang='en'> | |
| <head> | |
| <title>GraphiQL</title> | |
| <Style> | |
| body { | |
| margin: 0; | |
| width: 100%; | |
| height: 100%; | |
| overflow: hidden; |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>ES6 Demonstration</title> | |
| <style> | |
| .pager { margin: 5px 10px; user-select: none; font-family: sans-serif; } | |
| .page { display: inline-block; padding: 0 5px; cursor: pointer; } | |
| .page:active, .selected { color: red; } | |
| .selected { font-weight: bold; } | |
| #content { font: bold 250% sans-serif; padding: 25px 10px; } |
| { | |
| "schema": "https://json.schemastore.org/tsconfig.json", | |
| "compilerOptions": { | |
| "strict": true, | |
| "baseUrl": ".", | |
| "noEmit": true, | |
| "allowJs": true, | |
| "checkJs": true, | |
| // depending on the use case | |
| // we might add "DOM" and "DOM.Iterable" as well |
| name: 'Auto Commit Prettier' | |
| on: | |
| pull_request: | |
| branches: ['main'] | |
| jobs: | |
| auto-commit: | |
| name: 'Auto Commit' | |
| runs-on: ['ubuntu-latest'] |