-
Notifications
You must be signed in to change notification settings - Fork 0
/
folder structure.txt
81 lines (81 loc) · 3.33 KB
/
folder structure.txt
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
72
73
74
75
76
77
78
79
80
81
..
├── images
│ ├── search_results.png
│ └── submit_materials.png
├── nfdi_search_engine_design
│ ├── Elasticsearch
│ ├── appsubmitter_backend
│ │ ├── Dockerfile
│ │ ├── requirements_submitter.txt
│ │ └── submitter.py
│ ├── search
│ │ ├── backend
│ │ │ ├── data.json
│ │ │ ├── index_data.py
│ │ │ └── requirements_index.txt
│ │ └── frontend
│ │ ├── Dockerfile
│ │ ├── dist
│ │ │ ├── bündle.js
│ │ │ ├── bundle.js.LICENSE
│ │ ├── node_modules
│ │ ├── public
│ │ ├── src
│ │ │ ├── assets
│ │ │ │ ├── images
│ │ │ │ ├── fonts
│ │ │ │ └── styles
│ │ │ ├── components
│ │ │ │ ├── About.js
│ │ │ │ ├── AdvancedSearchBar.js
│ │ │ │ ├── BlogPost.js
│ │ │ │ ├── Events.js
│ │ │ │ ├── FilterCard.js
│ │ │ │ ├── Footer.js
│ │ │ │ ├── Home.js
│ │ │ │ ├── Navbar.js
│ │ │ │ ├── PagesSelection.js
│ │ │ │ ├── Pagination.js
│ │ │ │ ├── Papers.js
│ │ │ │ ├── PublicationDateSlider
│ │ │ │ ├── ResultsBox.js
│ │ │ │ ├── SearchBar.js
│ │ │ │ ├── SearchResults.js
│ │ │ │ ├── SubmitMaterials.js
│ │ │ │ ├── WorkflowTools.js
│ │ │ │ └── YouTubeChannels.js
│ │ │ ├── pages
│ │ │ │ ├── AboutPage.js
│ │ │ │ ├── BlogPostPage.js
│ │ │ │ ├── EventsPage.js
│ │ │ │ ├── HomePage.js
│ │ │ │ ├── MaterialPage.js
│ │ │ │ ├── PapersPage.js
│ │ │ │ ├── SearchResultsPage.js
│ │ │ │ ├── SubmitMaterialsPage.js
│ │ │ │ ├── WorkflowToolsPage.js
│ │ │ │ └── YouTubeChannelsPage.js
│ │ │ ├── App.css
│ │ │ ├── App.js
│ │ │ ├── App.test.js
│ │ │ ├── index.css
│ │ │ ├── index.js
│ │ │ ├── logo
│ │ │ ├── reportWebVitals
│ │ │ ├── setupTests
│ │ │ └── styles.css
│ │ ├── .env
│ │ ├── .gitignore
│ │ ├── Dockerfile
│ │ ├── npm.txt
│ │ ├── package.json
│ │ ├── package-lock
│ │ ├── readme
│ │ ├── timers-promises-mock
│ │ └── webpack.config.js
│ ├── .gitignore
│ └── elasticsearch setup
├── LICENSE
├── README
├── docker-compose
└── folder structure