Skip to content

Commit

Permalink
Merge pull request #28 from Imsyp/main
Browse files Browse the repository at this point in the history
fix application properties
  • Loading branch information
Imsyp authored Sep 21, 2024
2 parents 2c9ccf0 + 7cec8f0 commit b18dd70
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion server/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,4 @@ out/
.vscode/
build/classes/java/main/com/swdc/server/config/WebConfig.class
src/main/java/com/swdc/server/config/WebConfig.java
src/main/resources/application.properties
build
Binary file not shown.
3 changes: 1 addition & 2 deletions server/build/resources/main/application.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
spring.application.name=swdc
server.port=8090
spring.application.name=swdc
Binary file modified server/build/tmp/compileJava/previous-compilation-data.bin
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
public class PriceService {

private static final Logger logger = LoggerFactory.getLogger(PriceService.class);
private static final String BASE_PATH = "/Users/sangyeong_park/CE/contest/file_system";
private static final String BASE_PATH = "/mnt/patturning";

@Autowired
private MongoTemplate mongoTemplate;
Expand Down
3 changes: 1 addition & 2 deletions server/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
spring.application.name=swdc
server.port=8090
spring.application.name=swdc

0 comments on commit b18dd70

Please sign in to comment.