File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed
Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -194,3 +194,8 @@ test_run/
194194test_export.sh
195195test_real_data.sh
196196test_prod /
197+
198+ # Config files with credentials
199+ config /config.toml
200+ # But keep the example file
201+ ! config /config.example.toml
Original file line number Diff line number Diff line change 1+ # Trakt.tv API Configuration
2+ [trakt ]
3+ # Obtenir ces identifiants sur https://trakt.tv/oauth/applications
4+ client_id = " YOUR_CLIENT_ID"
5+ client_secret = " YOUR_CLIENT_SECRET"
6+ access_token = " YOUR_ACCESS_TOKEN"
7+ api_base_url = " https://api.trakt.tv"
8+ extended_info = " full"
9+
10+ # Letterboxd Export Configuration
11+ [letterboxd ]
12+ export_dir = " exports"
13+ watched_filename = " trakt-watched-films.csv"
14+ collection_filename = " trakt-collection-films.csv"
15+ shows_filename = " trakt-shows.csv"
16+
17+ # Export Settings
18+ [export ]
19+ format = " csv"
20+ date_format = " 2006-01-02"
21+
22+ # Logging Configuration
23+ [logging ]
24+ level = " info"
25+ file = " logs/export.log"
26+
27+ # Internationalization Settings
28+ [i18n ]
29+ default_language = " en"
30+ language = " en"
31+ locales_dir = " locales"
You can’t perform that action at this time.
0 commit comments