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
sudo certbot --authenticator webroot --webroot-path <path-to-webroot> --installer apache -d <your-domain> | |
https://letsencrypt.org/getting-started/ |
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
{ | |
"workbench.colorTheme": "One Dark Pro Vivid", | |
"prettier.trailingComma": "es5", | |
"prettier.singleQuote": true, | |
"editor.fontFamily": "Consolas, 'Courier New', monospace", | |
"editor.tabSize": 2, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.fontSize": 12, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" |
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
version: '3' | |
services: | |
prisma: | |
image: prismagraphql/prisma:1.19 | |
restart: always | |
ports: | |
- "4466:4466" | |
environment: | |
PRISMA_CONFIG: | | |
port: 4466 |
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
version: '3' | |
services: | |
prisma: | |
image: prismagraphql/prisma:1.23 | |
restart: always | |
ports: | |
- '4466:4466' | |
environment: | |
PRISMA_CONFIG: | | |
managementApiSecret: my-secret |
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
Using asdf, we can install specific arm64 version of terraform cli for m1 macs | |
1. Open your terminal and run this | |
```sh | |
git clone https://github.com/asdf-vm/asdf.git ~/.asdf | |
``` | |
2. Add asdf plugin to your .zshrc config | |
```sh |