Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Ravende/ECHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravende committed Feb 22, 2024
2 parents 92d1bff + a4fc319 commit 4341b9d
Show file tree
Hide file tree
Showing 18 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ bin/
!**/src/test/**/bin/

### IntelliJ IDEA ###
backend/src/main/resources/application.properties
backend/src/main/resources/ssl/keystore.p12
src/main/resources/application.properties
src/main/resources/ssl/keystore.p12
.idea
*.iws
*.iml
Expand Down
Binary file modified backend/build/libs/backend-0.0.1-SNAPSHOT.jar
Binary file not shown.
10 changes: 10 additions & 0 deletions backend/build/tmp/bootJar/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
Manifest-Version: 1.0
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.example.backend.BackendApplication
Spring-Boot-Version: 3.1.0
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx
Spring-Boot-Layers-Index: BOOT-INF/layers.idx
Build-Jdk-Spec: 17
Implementation-Title: backend
Implementation-Version: 0.0.1-SNAPSHOT

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified backend/build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GlobalCorsConfiguration implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:3000")
.allowedOrigins("http://localhost:3000", "https://ewhacafeuhub.netlify.app")
.allowedMethods("GET", "POST")
.allowCredentials(true);
}
Expand Down

0 comments on commit 4341b9d

Please sign in to comment.