-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed http to https for all links to downloads.codekvast.io and www…
….codekvast.io. Formatted sources.
- Loading branch information
1 parent
01af05d
commit a53cb63
Showing
29 changed files
with
163 additions
and
196 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
34 changes: 1 addition & 33 deletions
34
deploy/roles/codekvast.spring-boot-service/templates/codekvast-agent.properties
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,14 @@ | ||
#----------------------------------------------------------------------------------------- | ||
# Sample Codekvast configuration file. | ||
# | ||
# Below are the most common configuration properties described. | ||
# | ||
# See http://www.codekvast.io/pages/config.html for all details. | ||
# Codekvast configuration file. | ||
#----------------------------------------------------------------------------------------- | ||
|
||
# What is my application's name? Useful if more that one app delivers data to the same Codekvast server using the same licenseKey. | ||
appName = Codekvast {{ service_name | capitalize }} | ||
|
||
# What is my app's version? | ||
# The value of this parameter is a strategy for obtaining the actual version. | ||
# See http://www.codekvast.io/pages/config.html for full description of how to specify the appVersion. | ||
appVersion = manifest /opt/codekvast/{{ service_name }}/codekvast-{{ service_name }}-{{ codekvastVersion }}-all.jar | ||
|
||
# Where are my application binaries? | ||
# A comma-separated list of file system paths relative to the root directory. | ||
codeBase = /opt/codekvast/{{ service_name }}/codekvast-{{ service_name }}-{{ codekvastVersion }}-all.jar | ||
|
||
# What packages shall be tracked? | ||
# A comma-separated list of strings. | ||
packages = io.codekvast | ||
|
||
# What packages shall *not* be tracked? | ||
# A comma-separated list of strings. | ||
excludePackages = io.codekvast.javaagent | ||
|
||
# In which environment is the application deployed? | ||
# An arbitrary string, useful for separating data collected in different environments. | ||
environment = {{ env }} | ||
|
||
# Which hostname should be used in publications? | ||
# If not specified, the machine's native hostname is used. | ||
hostname = {{ ec2_tag_CNAME }} | ||
|
||
# Which methods should be tracked? | ||
# One of the keywords public, protected, package-private or private. | ||
# See http://www.codekvast.io/pages/config.html for full description. | ||
methodVisibility = all | ||
|
||
# Where is the Codekvast server? | ||
serverUrl = https://api.codekvast.io | ||
|
||
# What is my license key? | ||
licenseKey = {{ codekvast.licenseKey }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
# --- Codekvast version | ||
codekvastVersion = 1.0.0 | ||
codekvastVersion = 1.0.0 | ||
|
||
# --- Gradle tuning | ||
org.gradle.daemon = true | ||
org.gradle.daemon = true | ||
org.gradle.configureondemand = true | ||
org.gradle.parallel = true | ||
org.gradle.caching = true | ||
org.gradle.parallel = true | ||
org.gradle.caching = true | ||
|
||
# --- Bintray config | ||
codekvastDownloadPrefix = http\://downloads.codekvast.io | ||
codekvastDownloadPrefix = http\://downloads.codekvast.io | ||
|
||
# --- Kotlin | ||
kotlin.incremental = true | ||
kotlin.incremental = true | ||
|
||
# --- SDKMAN managed Java versions (used by <rootDir>/tools/prepare-workstation/run.sh and *.gradle) | ||
sdkmanJavaVersion_11 = 11.0.2-zulu | ||
sdkmanJavaVersion_10 = 10.0.2-zulu | ||
sdkmanJavaVersion_9 = 9.0.7-zulu | ||
sdkmanJavaVersion_8 = 8.0.201-zulu | ||
sdkmanJavaVersion_7 = 7.0.201-zulu | ||
sdkmanJavaVersion_11 = 11.0.2-zulu | ||
sdkmanJavaVersion_10 = 10.0.2-zulu | ||
sdkmanJavaVersion_9 = 9.0.7-zulu | ||
sdkmanJavaVersion_8 = 8.0.201-zulu | ||
sdkmanJavaVersion_7 = 7.0.201-zulu | ||
|
||
sdkmanJavaDefault = 11.0.2-zulu # Used by .gradlew (and thus Jenkinsfile) | ||
sdkmanJavaDefault = 11.0.2-zulu # Used by .gradlew (and thus Jenkinsfile) |
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
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
4 changes: 2 additions & 2 deletions
4
product/dashboard/src/integrationTest/resources/application-integrationTest.properties
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Enable file logging | ||
logging.file=build/log/integrationTest.log | ||
logging.file = build/log/integrationTest.log | ||
# Disable @Scheduled | ||
codekvast.fileImportInitialDelaySeconds = 100000000 | ||
# Use a random port for the management interface... | ||
management.server.port = 0 | ||
management.server.port = 0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,8 +75,8 @@ private ApiInfo getApiInfo(CodekvastDashboardSettings settings, String descripti | |
return new ApiInfo(settings.getApplicationName(), | ||
description, | ||
settings.getDisplayVersion(), | ||
"http://www.codekvast.io/pages/terms-of-service.html", | ||
new Contact("Codekvast", "http://www.codekvast.io", "[email protected]"), | ||
"https://www.codekvast.io/pages/terms-of-service.html", | ||
new Contact("Codekvast", "https://www.codekvast.io", "[email protected]"), | ||
"Licensed under the MIT license", | ||
"https://opensource.org/licenses/MIT", | ||
new ArrayList<>()); | ||
|
Binary file modified
BIN
+3 Bytes
(100%)
product/dashboard/src/main/resources/application-dev-secrets.yml
Binary file not shown.
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
Oops, something went wrong.