Changes
Page history
First pages
authored
May 15, 2024
by
Alexander Rudolph
Show whitespace changes
Inline
Side-by-side
en/Code-Structure.md
0 → 100644
View page @
f1b6d558
This repository follows the fixed layout (non static files and folders were left out):
```
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
```
If you want to take a closer look into parts of this structure, follow these links:
-
[
Jupyter Notebooks (.ipynb)
](
en/code/Jupyter-Notebooks
)
-
[
Docker (Dockerfile, docker-compose)
](
en/code/Docker
)
-
data (raw_data, clean_data, outputs)
-
[
lib
](
en/code/Lib
)
-
api
-
dashboard