This file contains hidden or 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
| FROM python:3.11.4-alpine3.18 as build | |
| WORKDIR /usr/src/app | |
| COPY docs/requirements*.txt ./ | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY ./docs/plantuml-install.sh ./plantuml-install.sh | |
| RUN ./plantuml-install.sh | |
| COPY ./mkdocs.yml ./ | |
| COPY ./_docs/ ./_docs/ |
This file contains hidden or 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
| FROM debian:stable-slim | |
| RUN apt-get update && apt-get -y install --no-install-recommends \ | |
| gnupg \ | |
| curl \ | |
| wget \ | |
| git \ | |
| apt-transport-https \ | |
| ca-certificates \ | |
| zsh \ |
This file contains hidden or 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
| // ==UserScript== | |
| // @name MaterialDesignIcons - Dark Theme | |
| // @include https://cdn.materialdesignicons.com/* | |
| // @version 1 | |
| // @grant none | |
| // @run-at document-start | |
| // ==/UserScript== | |
| function GM_addStyle (cssStr) { | |
| var D = document; |
This file contains hidden or 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
| import * as React from 'react'; | |
| type OuterProps<ParamType> = | |
| { | |
| params: ParamType; | |
| doLongPress(params: ParamType): Promise<void>; | |
| doSingleClick(params: ParamType): Promise<void>; | |
| selected: boolean; | |
| longPressTime: number; |