-
Notifications
You must be signed in to change notification settings - Fork 43
CHORE: Convert ServiceRunner to Kotlin #1879
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,6 @@ target/ | |
| */bin/* | ||
| */generated/* | ||
| *.tgz | ||
| .vscode | ||
| .env | ||
| .DS_Store | ||
| quick-run/config/reference-config.yaml | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,205 @@ | ||
| { | ||
| "version": "0.2.0", | ||
| "configurations": [ | ||
| { | ||
| "type": "java", | ||
| "name": "Sep Server: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunSepServer", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Platform Server: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunPlatformServer", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Custody Server: custody", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunCustodyServer", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Event Processing Server: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunEventProcessingServer", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Horizon Observer: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunStellarObserver", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Soroban Observer: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunStellarObserver", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "stellar_network.rpc_url": "https://soroban-testnet.stellar.org" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Reference Server: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunKotlinReferenceServer", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "default" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Wallet Reference Server: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunWalletServer", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Docker - Run Dev Stack - Kafka, Postgres, SEP24 Reference UI", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunDockerDevStack", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: default - horizon", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "default-horizon" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: auth-apikey-custody", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "auth-apikey-custody" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: auth-apikey-platform", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "auth-apikey-platform" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: auth-jwt-custody", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "auth-jwt-custody" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: auth-jwt-platform", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "auth-jwt-platform" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: custody", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "custody" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: deployment", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "deployment" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: host.docker.internal", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "console": "internalConsole", | ||
| "internalConsoleOptions": "openOnSessionStart" | ||
| }, | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing TEST_PROFILE_NAME environment variable in launch configurationMedium Severity The "Test Profile: host.docker.internal" launch configuration doesn't set the |
||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: kafka-sasl-ssl", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "kafka-sasl-ssl" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: rpc", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "rpc" | ||
| } | ||
| }, | ||
| { | ||
| "type": "java", | ||
| "name": "Test Profile: soroban-rpc-default", | ||
| "request": "launch", | ||
| "mainClass": "org.stellar.anchor.platform.run_profiles.RunTestProfile", | ||
| "envFile": "${workspaceFolder}/.env", | ||
| "env": { | ||
| "TEST_PROFILE_NAME": "soroban-rpc-default" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| { | ||
| "java.configuration.updateBuildConfiguration": "automatic", | ||
| "java.debug.settings.enableRunDebugCodeLens": true, | ||
| "java.debug.settings.hotCodeReplace": "auto", | ||
| "java.debug.settings.vmArgs": "", | ||
| "java.compile.nullAnalysis.mode": "automatic", | ||
| "java.configuration.runtimes": [], | ||
| "java.jdt.ls.java.home": "", | ||
| "java.import.gradle.enabled": true, | ||
| "java.import.gradle.wrapper.enabled": true | ||
| } |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.