Skip to content
This repository has been archived by the owner on May 8, 2024. It is now read-only.

Commit

Permalink
gitignores
Browse files Browse the repository at this point in the history
  • Loading branch information
maeddes committed Apr 16, 2024
1 parent 1c35342 commit 3f2abfb
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
HELP.md
**target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
*.jar

__pycache__

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
opentelemetry-javaagent.jar
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ String fail() {
@GetMapping("/todos/")
List<String> getTodos(){

logger.info(cfInstance);

List<String> todos = new ArrayList<String>();

todoRepository.findAll().forEach(todo -> todos.add(todo.getTodo()));
Expand Down
37 changes: 37 additions & 0 deletions labs/otel-in-action/todobackend-springboot/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
HELP.md
**target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
*.jar

__pycache__

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/
opentelemetry-javaagent.jar

0 comments on commit 3f2abfb

Please sign in to comment.