Skip to content

Commit d8eacb9

Browse files
committed
initial commit
0 parents  commit d8eacb9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+2901
-0
lines changed

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
.tfvars
2+
# Local .terraform directories
3+
**/.terraform/*
4+
5+
# .tfstate files
6+
*.tfstate
7+
*.tfstate.*
8+
9+
# Crash log files
10+
crash.log
11+
crash.*.log
12+
13+
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
14+
# password, private keys, and other secrets. These should not be part of version
15+
# control as they are data points which are potentially sensitive and subject
16+
# to change depending on the environment.
17+
*.tfvars
18+
*.tfvars.json
19+
20+
# Ignore override files as they are usually used to override resources locally and so
21+
# are not checked in
22+
override.tf
23+
override.tf.json
24+
*_override.tf
25+
*_override.tf.json
26+
27+
# Ignore transient lock info files created by terraform apply
28+
.terraform.tfstate.lock.info
29+
30+
# Include override files you do wish to add to version control using negated pattern
31+
# !example_override.tf
32+
33+
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
34+
# example: *tfplan*
35+
36+
# Ignore CLI configuration files
37+
.terraformrc
38+
terraform.rc

.terraform.lock.hcl

Lines changed: 62 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

autoscaler/.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/gradlew text eol=lf
2+
*.bat text eol=crlf
3+
*.jar binary

autoscaler/.gitignore

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/
38+
.gradle
39+
**/build/
40+
!src/**/build/
41+
42+
# Ignore Gradle GUI config
43+
gradle-app.setting
44+
45+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
46+
!gradle-wrapper.jar
47+
48+
# Avoid ignore Gradle wrappper properties
49+
!gradle-wrapper.properties
50+
51+
# Cache of project
52+
.gradletasknamecache
53+
54+
# Eclipse Gradle plugin generated files
55+
# Eclipse Core
56+
.project
57+
# JDT-specific (Eclipse Java Development Tools)
58+
.classpath

autoscaler/build.gradle

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.4.2'
4+
id 'io.spring.dependency-management' version '1.1.7'
5+
}
6+
7+
group = 'com.redis'
8+
version = '0.0.1-SNAPSHOT'
9+
10+
java {
11+
toolchain {
12+
languageVersion = JavaLanguageVersion.of(17)
13+
}
14+
}
15+
16+
repositories {
17+
mavenCentral()
18+
}
19+
20+
dependencies {
21+
implementation 'org.springframework.boot:spring-boot-starter-web'
22+
implementation 'com.redis.om:redis-om-spring:0.9.8'
23+
implementation 'ch.qos.logback:logback-classic'
24+
implementation 'org.projectlombok:lombok'
25+
implementation 'io.micrometer:micrometer-registry-prometheus'
26+
implementation 'org.springframework.boot:spring-boot-starter-actuator'
27+
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
28+
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.1.0'
29+
implementation 'org.apache.httpcomponents.client5:httpclient5:5.4.1'
30+
annotationProcessor 'org.projectlombok:lombok'
31+
annotationProcessor 'com.redis.om:redis-om-spring:0.9.8'
32+
testAnnotationProcessor 'org.projectlombok:lombok'
33+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
34+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
35+
}
36+
37+
repositories {
38+
maven {
39+
name = "Spring Milestones"
40+
url = uri("https://repo.spring.io/milestone")
41+
}
42+
}
43+
44+
45+
tasks.named('test') {
46+
useJUnitPlatform()
47+
}
42.6 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)