Skip to content

Commit

Permalink
refactor: 배포 환경 구성 (#204)
Browse files Browse the repository at this point in the history
  • Loading branch information
angelSuho committed Jun 13, 2023
1 parent b14820d commit 8e9b4bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public void run(String... args) {
.brand("리복")
.build();
/////////////////////////////////////////////////// 100명 유저
for(int i=1; i<=10; i++){
for(int i=1; i<=100; i++){
List<String> tags = new ArrayList<>(); // 상품에 포함시킬 태크 선택하여 저장
for (int j = 1; j <= 5; j++) {
TagName tagName = tagNameService.findById(random.nextLong(30) + 1L);
Expand Down Expand Up @@ -239,7 +239,7 @@ public void run(String... args) {
memberService.register(brand_admin9);
memberService.register(brand_admin10);
//==상품데이터==//
for (int n = 1; n <= 100; n++) {
for (int n = 1; n <= 1000; n++) {
CommonFile mainFile = CommonFile.builder()
.fileName("bamin.png")
.build();
Expand Down

0 comments on commit 8e9b4bb

Please sign in to comment.