You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.9 KiB
34 lines
1.9 KiB
const parserConfig = { |
|
// sources of data |
|
rss_feed_url: "https://www.agendadulibre.org/events.rss?tag=openstreetmap", |
|
// https://osmcal.org/static/api.html api doc |
|
// see also https://wiki.openstreetmap.org/wiki/Template:Calendar |
|
osmcal_url: "https://osmcal.org/api/v2/events/", // outputs json of coming events from https://osmcal.org/ |
|
// mobilizon instance |
|
feeder_mobilizon_user_id: "3", // organizer_actor_id pour rattacher les nouveaux évènements à un utilisateur. 3 est le premier admin créé. |
|
mobilizon_public_url: "https://mobilizon.openstreetmap.fr", // url publique de l'instance mobilizon pour créer les url d'évènements |
|
dev_url: "http://127.0.0.1:4000/api", // url publique de l'instance mobilizon pour créer les url d'évènements |
|
// database of mobilizon |
|
db_name: "mobilizon_dev", |
|
db_user: "mobilizon", |
|
db_pass: "0eHmz99Rb2WEhPKbwGJuAU-Da04jVV36QjuOOeJDOsK_Q1w7pikqIR04WqHoZLQi", |
|
// other configs |
|
askAgendaDuLibre: true, // should we fetch the Agenda du libre feed ? |
|
askOsmCal: false, |
|
runAddQueriesToMobilizonBDD: false, |
|
debug: false, |
|
organizerActorId: 4, // ID of the user who imports events in the mobilizon instance. 3 is the first admin user created, usually. |
|
runAddQueriesToMobilizonAPI: true, |
|
enableFetch: true, // enable persisting of new events via API |
|
// enableFetch: false, |
|
dev_mode: true, // dev mode uses localhost instance of mobilizon running on port 4000 |
|
limit_persistence_of_new_events:true, |
|
max_new_events_in_scrapping: 400, |
|
max_new_events: 60, |
|
bearer_token: "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJtb2JpbGl6b24iLCJleHAiOjE2NDIwODQxMTYsImlhdCI6MTY0MjA4MzIxNiwiaXNzIjoibW9iaWxpem9uIiwianRpIjoiOWRkN2Q5NDUtOWNlMC00Mzk4LTgxOTEtMDgxODk4NWYxZTM4IiwibmJmIjoxNjQyMDgzMjE1LCJzdWIiOiJVc2VyOjEiLCJ0eXAiOiJhY2Nlc3MifQ.PXFYQGUID1VM9cc_C_gNK78qhCIco217B9XN9IAUwHc4sx-FX9y_yrryuAfNwCLXYXfafbVBNMZlMNZ5LnwMcg", |
|
|
|
ccpl: "https://www.cc-paysdelimours.fr/agenda" |
|
|
|
|
|
}; |
|
export default parserConfig;
|
|
|