Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
4f84baf
fix: change event schema (add openLnL, integrate 모집임박 to 모집중)
subir-sh Apr 2, 2026
466648d
feat: download image from event list page
subir-sh Apr 2, 2026
63f0abe
feat: download image from detail page
subir-sh Apr 2, 2026
44a5948
Merge pull request #94 from wafflestudio/fix/events-schema
subir-sh Apr 6, 2026
bcc5c93
Merge pull request #95 from wafflestudio/feat/image
subir-sh Apr 6, 2026
d67d794
fix: skip events with fallback details to prevent duplicate event keys
subir-sh Apr 8, 2026
dd0e2da
fix: change find to exist, to avoid incorrect result size error
subir-sh Apr 8, 2026
0b73d7b
add: userservice::uploadprofile
Apr 12, 2026
fad66a7
chore: change local->ociupload
Apr 12, 2026
13a0e4b
remove: localuploadService
Apr 12, 2026
0b73030
chore: change default-image url to oci
Apr 12, 2026
d365c2a
Merge pull request #97 from wafflestudio/feat/profile-image-oci
ohsuhyeon0119 Apr 12, 2026
568d86a
fix: deal with new formats, change polling logic
subir-sh Apr 13, 2026
d451eb2
Merge pull request #98 from wafflestudio/fix/events
subir-sh Apr 13, 2026
34dd8b1
Always upload images during batch crawl, including dump-only
subir-sh Apr 17, 2026
a3b8f78
Improve crawler detail parsing memory usage
subir-sh Apr 17, 2026
4eb1c2b
Merge pull request #100 from wafflestudio/codex/implement-local-crawl…
subir-sh Apr 17, 2026
6b2b39d
Refresh cookies after detail navigation for content images
subir-sh Apr 17, 2026
91f9c11
Merge pull request #101 from wafflestudio/codex/refactor-crawler-for-…
subir-sh Apr 17, 2026
2b754b9
perf: stream multipart event sync in batches
subir-sh Apr 26, 2026
c158b20
Merge pull request #102 from wafflestudio/codex/evaluate-file-upload-…
subir-sh Apr 26, 2026
518b6f9
social lgin redirect url
aystoe Apr 28, 2026
bca5b60
Update application.yml
aystoe Apr 28, 2026
ebe8c41
Merge pull request #103 from wafflestudio/featredirection
aystoe Apr 28, 2026
bce0e49
temp
aystoe Apr 29, 2026
ef760b0
Merge pull request #104 from wafflestudio/feat/socialLogin
ohsuhyeon0119 Apr 29, 2026
8a7ccff
feat: add additional api for sync with file
subir-sh Apr 29, 2026
46d131a
Merge pull request #105 from wafflestudio/feat/socialLogin
aystoe Apr 30, 2026
7757115
Merge pull request #106 from wafflestudio/fix/events
aystoe Apr 30, 2026
d132f66
Update UserService.kt
aystoe Apr 30, 2026
aebbf7b
fix: close events after apply end time
subir-sh Apr 30, 2026
6ad1b9e
feat: add isPeriodEvent field to event model/api response
subir-sh Apr 30, 2026
1f1d7d2
fix: change migration files::erase category 마감임박 related codes
May 1, 2026
a5ac869
add: 모집대기 category
May 1, 2026
d2b5426
fix: openLnL category cration in V5 migration files
May 1, 2026
af07f16
fix: delete recreation category related codes
May 1, 2026
c080cda
Merge pull request #107 from wafflestudio/fix/categories
ohsuhyeon0119 May 1, 2026
ee285f9
fix: add default values for isPeriodEvent
subir-sh May 1, 2026
eb19ab1
Merge pull request #108 from wafflestudio/feat/event-schema
subir-sh May 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea/
13 changes: 0 additions & 13 deletions .idea/compiler.xml

This file was deleted.

9 changes: 9 additions & 0 deletions .idea/hangsha-server.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/sqldialects.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package com.team1.hangsha.batch
import com.team1.hangsha.config.DatabaseConfig
import com.team1.hangsha.config.TestValueLogger
import com.team1.hangsha.com.team1.hangsha.config.JacksonConfig
import com.team1.hangsha.common.upload.OciUploadService
import com.team1.hangsha.config.OciConfig
import com.team1.hangsha.event.service.EventSyncService
import org.springframework.boot.WebApplicationType
import org.springframework.boot.autoconfigure.SpringBootApplication
Expand All @@ -15,6 +17,8 @@ import org.springframework.context.annotation.Import
JacksonConfig::class,
EventSyncService::class,
TestValueLogger::class,
OciConfig::class,
OciUploadService::class,
) // for explicit bean import
class BatchApplication

Expand Down
Loading
Loading