Changes
Page history
German version
authored
May 15, 2024
by
Alexander Rudolph
Show whitespace changes
Inline
Side-by-side
de/Code-Struktur.md
0 → 100644
View page @
7fc31acd
Dieses Repository hat eine feste Dateistruktur (nicht statische Dateien wurden herausgelassen):
```
shell
├── LICENSE
├── Makefile
├── README.md
├── clean_data
│ ├── Bioinformatik
│ ├── Informatik
│ ├── Mathematik
│ └── participation
├── outputs
│ └── pdfs
├── raw_data
│ ├── Bioinformatik
│ ├── Informatik
│ ├── Mathematik
│ └── participation
├── requirements.txt
└── src
├── assets
│ └── table_template.html
├── cleanup.ipynb
├── dashboard
│ └── dashboard.py
├── db
│ ├── Dockerfile
│ ├── api
│ │ ├── Dockerfile
│ │ ├── api-v1
│ │ │ ├── api-doc.js
│ │ │ ├── open-api-types.js
│ │ │ ├── paths
│ │ │ └── services
│ │ ├── index.js
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ └── postgres.js
│ ├── docker-compose.yaml
│ ├── questions.json
│ └── schema.sql
├── lib
│ ├── api.py
│ └── constants.py
├── old-report.ipynb
└── pipeline.ipynb
```
Falls du dir Teile davon genauer angucken möchtest:
-
[
Jupyter Notebooks (.ipynb)
](
code/Jupyter-Notebooks
)
-
[
Docker (Dockerfile, docker-compose)
](
code/Docker
)
-
[
data (raw_data, clean_data, outputs)
](
code/Data
)
-
[
lib
](
code/Lib
)
-
[
api
](
code/API
)
-
[
Dashboard
](
code/dashboard
)