-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.gitignore
71 lines (58 loc) · 1.83 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Never include live configuration file under version control!
config.ini
# Dependency directory
node_modules
# OS metadata
.DS_Store
Thumbs.db
# Node.JS
yarn.lock
package-lock.json
# Python setuptools/distutils
build/
dist/
Pipfile
Pipfile.lock
*.egg-info/
# Other Python
*.pyc
pyproject.toml
__pycache__/
.ipynb_checkpoints/
# Virtual env
.venv/
# Log files
*.log
# configuration files
frontend/src/Configuration/config.js
backend/src/configuration/config.js
backend/src/configuration/unprocessed.json
backend/src/configuration/processed.json
# newsguard domains
backend/src/eligibility/Resources/domains.json
# data from eligibility API
backend/src/eligibility/User_Data/*.json.gz
backend/src/authorizer/UserData/*.json.gz
backend/src/authorizer/UserDatav2/*.json.gz
backend/src/authorizer/engagement_data/*.json.gz
backend/src/authorizer/favorites_data/*.json.gz
backend/src/authorizer/hometimeline_data/*.json.gz
backend/src/authorizer/usertimeline_data/*.json.gz
backend/src/authorizer/pilot3_testing/UserData/*.json.gz
backend/src/authorizer/pilot3_testing/UserDatav2/*.json.gz
backend/src/authorizer/pilot3_testing/favorites_data/*.json.gz
backend/src/authorizer/pilot3_testing/hometimeline_data/*.json.gz
backend/src/authorizer/pilot3_testing/usertimeline_data/*.json.gz
backend/src/authorizer/pilot3_first_phase/UserDatav2/*.json.gz
backend/src/authorizer/pilot3_first_phase/favorites_data/*.json.gz
backend/src/authorizer/pilot3_first_phase/hometimeline_data/*.json.gz
backend/src/authorizer/pilot3_first_phase/usertimeline_data/*.json.gz
# data, model and newsguard domains from recsys
backend/src/recsys/data/*
backend/src/recsys/model/*
backend/src/recsys/NewsGuardIffy/*
backend/src/recsys/NG_2024_March.csv
# session data from authorizer
backend/src/authorizer/sessionData*
# screen 2 tweets from cronjob
backend/src/cronjobs/screen_2_tweets*