Verifying myself: I am ghostfoxgod on Keybase.io. tU7tREtgWxOPgWe-uGRPp0Jrh84MGAPtujYo / https://keybase.io/ghostfoxgod/sigs/tU7tREtgWxOPgWe-uGRPp0Jrh84MGAPtujYo
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
{"label":"Code Coverage","message":"65.16","schemaVersion":1,"color":"green","namedLogo":"vitest"} |
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
{"label":"Code Coverage","message":"95.17","schemaVersion":1,"color":"green","namedLogo":"vitest"} |
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
{"schemaVersion":1,"label":"Code Coverage","message":"100","color":"green","namedLogo":"vitest"} |
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
{"label":"Code Coverage","message":"87.83","schemaVersion":1,"color":"green","namedLogo":"vitest"} |
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
#!/bin/bash | |
# More details here: https://akashrajpurohit.com/blog/dynamic-dns-made-easy-with-cloudflare-api/ | |
# Define your Cloudflare API key and email | |
CLOUDFLARE_API_KEY=your_api_key | |
CLOUDFLARE_EMAIL=your_email | |
# Define the domain and record you want to update | |
DOMAIN=your_domain.com |
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
version: "3" | |
services: | |
# Database | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es6", | |
"module": "commonjs", | |
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"], | |
"sourceMap": true, | |
"outDir": "./dist", | |
"moduleResolution": "node", | |
"removeComments": true, |
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
{ | |
"defaultSeverity": "error", | |
"extends": ["tslint:latest", "tslint-config-prettier"], | |
"jsRules": {}, | |
"rules": { | |
"no-console": false, | |
"member-access": false, | |
"object-literal-sort-keys": false, | |
"ordered-imports": false, | |
"interface-name": false, |