You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dda-masto-embed/masto-embed/.vscode/settings.json

54 lines
1.8 KiB
JSON

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{
"calva.customREPLCommandSnippets": [
{
"name": "Start masto-embed Server",
"ns": "user",
"repl": "clj",
"snippet": "(start)"
},
{
"name": "Stop masto-embed Server",
"ns": "user",
"repl": "clj",
"snippet": "(stop)"
},
{
"name": "Restart masto-embed Server",
"ns": "user",
"repl": "clj",
"snippet": "(restart)"
}
],
"calva.replConnectSequences": [
{
"name": "Server only - masto-embed",
"projectType": "Leiningen",
"afterCLJReplJackInCode": "(start)",
"cljsType": "none",
"menuSelections": {
"leinProfiles": [
"dev"
]
}
},
{
"name": "Server + Client masto-embed",
"projectType": "Leiningen",
"afterCLJReplJackInCode": "(start)",
"cljsType": {
"dependsOn": "lein-figwheel",
"connectCode": "(do (println (str \"Starting Fighweel. Client URL is http://127.0.0.1:\" (:port (clojure.edn/read-string (slurp \"dev-config.edn\"))))) (use 'figwheel-sidecar.repl-api) (when-not (figwheel-sidecar.repl-api/figwheel-running?) (figwheel-sidecar.repl-api/start-figwheel!)) (figwheel-sidecar.repl-api/cljs-repl))",
"isConnectedRegExp": "To quit, type: :cljs/quit",
"openUrlRegExp": "Client URL is (?<url>\\S+)",
"shouldOpenUrl": true,
"isReadyToStartRegExp": "Prompt will show"
},
"menuSelections": {
"leinProfiles": [
"dev"
]
}
}
]
}