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
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDa63v/18P4K1oShheCU2VWjYD6TJe79fnQa6UMVjqWedWYvc1yFQH+eQ56dMnVM3F9WyMBu82PC5nbXqcnIF3jT9JSnoJNAZp0JU716pfumT6SD+y9uEHj3ZH5PX799A+nHey1xeeuUNTs552aWvPzq8t+dLMt6MC+Nzz3p9vLkLnOa1h0zGDuFPse+XR2E9ISu/RaQCnxKrMgOfsKmEz68krYH48XW40lrt4chpTFTdCToNYThW8s87G8w5ttIStTi0MyY+czcWH0FJPoC9PQnCsR1t9+4Atzo+W4GpCfLPLxeXwN3tEnrKV/xBigf3Mnv6XYZb2Ei6lVaNEM4Zav [email protected] | |
hostname: vnetcup | |
rancher: | |
console: ubuntu | |
ssh: | |
port: 1998 |
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
{ | |
"latex-workshop.view.pdf.viewer": "tab", | |
"gitlens.currentLine.enabled": false, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": true, | |
"projectManager.any.maxDepthRecursion": 1, | |
"sync.autoUpload": true, | |
"sync.gist": "redacted", |
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
user@server:/workspaces/now-cli-bug-demo/api# cd api/ | |
user@server:/workspaces/now-cli-bug-demo/api# ncc build dist/main.js -o out/ | |
ncc: Version 0.20.4 | |
ncc: Compiling file index.js | |
3275kB out/index.js | |
3275kB [4953ms] - ncc 0.20.4 | |
user@server:/workspaces/now-cli-bug-demo/api# node out/index.js | |
[Nest] 1459 - 07/12/2019, 1:06 PM [NestFactory] Starting Nest application... | |
(node:1459) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. | |
[Nest] 1459 - 07/12/2019, 1:06 PM [InstanceLoader] AppModule dependencies initialized +12ms |
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
FROM ubuntu:18.10 | |
# non interactive frontend for locales | |
ENV DEBIAN_FRONTEND=noninteractive | |
# installing texlive and utils | |
RUN apt-get update && \ | |
apt-get -y install --no-install-recommends pandoc texlive texlive-latex-extra texlive-generic-extra texlive-extra-utils texlive-fonts-extra texlive-bibtex-extra biber latexmk make git procps locales curl && \ | |
rm -rf /var/lib/apt/lists/* |
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
{ | |
"pasteImage.defaultName": "${currentFileNameWithoutExt}_Y-MM-DD-HH-mm-ss", | |
"pasteImage.forceUnixStyleSeparator": false, | |
"pasteImage.path": "${currentFileDir}/attachments/" | |
} |