Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add museumsbahnen #360

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package events.boudicca.eventcollector

import base.boudicca.api.eventcollector.EventCollectorCoordinatorBuilder
import base.boudicca.api.eventcollector.collectors.BoudiccaCollector
import events.boudicca.eventcollector.collectors.*

fun main() {
Expand Down Expand Up @@ -34,6 +35,7 @@ fun main() {
.addEventCollector(OKHVoecklabruckCollector())
.addEventCollector(ValugCollector())
.addEventCollector(AlpenvereinCollector())
.addEventCollector(BoudiccaCollector("https://museumsbahn-events.at", "museumsbahnen"))
.build()

eventCollectorCoordinator.startWebUi()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package events.boudicca.eventcollector

import base.boudicca.api.eventcollector.EventCollectorDebugger
import base.boudicca.api.eventcollector.collectors.BoudiccaCollector
import base.boudicca.api.eventcollector.fetcher.FileBackedFetcherCache
import events.boudicca.eventcollector.collectors.*
import java.io.File
Expand All @@ -14,7 +15,7 @@ fun main() {
// .enableEnricher("https://enricher.boudicca.events")
// .enableEnricher("http://localhost:8085")
//enable this line to ingest the collected events into the local eventdb (this uses the configuration from the application.properties)
// .enableIngestion()
.enableIngestion()

// .debug(TechnologiePlauscherlCollector())
// .debug(JkuEventCollector())
Expand Down Expand Up @@ -44,5 +45,7 @@ fun main() {
// .debug(MuseumArbeitsweltCollector())
// .debug(OKHVoecklabruckCollector())
// .debug(ValugCollector())
.debug(AlpenvereinCollector())
// .debug(AlpenvereinCollector())
.debug(BoudiccaCollector("https://museumsbahn-events.at", "museumsbahnen"))

}