Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #112 from trueberryless-org/ci-tree

[ci] update tree

authored by

trueberryless and committed by
GitHub
41e3d783 cf699578

+187
+187
README.md
··· 14 14 15 15 ## Project structure 16 16 17 + ``` 18 + . 19 + ├── CONTRIBUTING.md 20 + ├── Dockerfile 21 + ├── LICENSE 22 + ├── README.md 23 + ├── manifest 24 + │ ├── certificate.yaml 25 + │ ├── deployment.yaml 26 + │ ├── ingress.yaml 27 + │ ├── namespace.yaml 28 + │ └── service.yaml 29 + ├── manifest-lunaria 30 + │ ├── certificate.yaml 31 + │ ├── deployment.yaml 32 + │ ├── ingress.yaml 33 + │ └── service.yaml 34 + ├── package.json 35 + ├── pnpm-lock.yaml 36 + ├── pnpm-workspace.yaml 37 + └── starlight 38 + ├── CHANGELOG.md 39 + ├── README.md 40 + ├── astro.config.mjs 41 + ├── lunaria 42 + │ ├── Dockerfile 43 + │ ├── components.ts 44 + │ ├── nginx.conf 45 + │ ├── renderer.config.ts 46 + │ └── styles.css 47 + ├── lunaria.config.json 48 + ├── package.json 49 + ├── pnpm-lock.yaml 50 + ├── public 51 + │ ├── embedded_programming 52 + │ │ └── lcd 53 + │ │ ├── lcd.c 54 + │ │ └── lcd.h 55 + │ ├── favicon.svg 56 + │ └── images 57 + │ ├── artificial_intelligence 58 + │ │ ├── cnn 59 + │ │ │ └── handwritten2.png 60 + │ │ ├── count_vectorizer_pandas_output.png 61 + │ │ ├── diagrams 62 + │ │ │ ├── bar.png 63 + │ │ │ ├── box.png 64 + │ │ │ ├── heatmap.png 65 + │ │ │ ├── hist.png 66 + │ │ │ ├── histplot.png 67 + │ │ │ ├── pairplot.png 68 + │ │ │ ├── plot.png 69 + │ │ │ ├── relplot.png 70 + │ │ │ ├── scatter.png 71 + │ │ │ ├── scatter_2.png 72 + │ │ │ └── violinplot.png 73 + │ │ ├── machine_learning_concept_dm.png 74 + │ │ ├── machine_learning_concept_lm.png 75 + │ │ ├── machine_learning_process_dm.png 76 + │ │ ├── machine_learning_process_lm.png 77 + │ │ ├── rfc_ensemble_dm.png 78 + │ │ ├── rfc_ensemble_lm.png 79 + │ │ ├── rfc_tree_dm.png 80 + │ │ ├── rfc_tree_lm.png 81 + │ │ └── series-and-dataframe.png 82 + │ ├── decentralised_systems 83 + │ │ ├── azure-function 84 + │ │ │ ├── durable-function-aggregator.png 85 + │ │ │ ├── durable-function-approval.png 86 + │ │ │ ├── durable-function-async-http-api.png 87 + │ │ │ ├── durable-function-chaining.png 88 + │ │ │ ├── durable-function-fan-out-fan-in.png 89 + │ │ │ └── durable-function-monitor.png 90 + │ │ └── iaas-paas-saas.png 91 + │ ├── economy_and_law 92 + │ │ ├── portfolioanalyse.png 93 + │ │ └── product_lifecycle.png 94 + │ ├── embedded_programming 95 + │ │ ├── adc 96 + │ │ │ ├── adc_left_adjust_result.png 97 + │ │ │ ├── adc_right_adjust_result.png 98 + │ │ │ └── analog_to_digital.webp 99 + │ │ ├── button 100 + │ │ │ ├── floating_point.png 101 + │ │ │ ├── internal_pull_up_widerstand.png 102 + │ │ │ ├── kurzschluss.png 103 + │ │ │ ├── pull_down_widerstand.png 104 + │ │ │ ├── pull_down_widerstand_closed.png 105 + │ │ │ ├── pull_up_widerstand.png 106 + │ │ │ └── pull_up_widerstand_closed.png 107 + │ │ ├── lcd 108 + │ │ │ ├── lcd_composition.png 109 + │ │ │ └── lcd_grid.png 110 + │ │ ├── spi 111 + │ │ │ ├── architecture.png 112 + │ │ │ ├── transfer_data.png 113 + │ │ │ ├── transfer_data_2.png 114 + │ │ │ ├── transfer_data_2_dark.png 115 + │ │ │ └── transfer_data_dark.png 116 + │ │ └── timer 117 + │ │ ├── timer_pwm_compare_register.png 118 + │ │ ├── timer_pwm_duty_cycle_average.png 119 + │ │ ├── timer_pwm_inverting_mode.png 120 + │ │ ├── timer_pwm_non_inverting_mode.png 121 + │ │ ├── timer_ueberlauf.png 122 + │ │ └── timer_vorladen.png 123 + │ ├── languages 124 + │ │ ├── Signature_black.png 125 + │ │ ├── Signature_white.png 126 + │ │ ├── dreischichtige_menschliche_persoenlichkeit.png 127 + │ │ └── fisches_nachtgesang.jpg 128 + │ ├── project_management 129 + │ │ ├── earned_value_analysis-2.png 130 + │ │ ├── earned_value_analysis.png 131 + │ │ ├── earned_value_analysis_key_figures.png 132 + │ │ ├── magic_triangle.jpg 133 + │ │ ├── magic_triangle_context.png 134 + │ │ ├── project_budget_controlling.png 135 + │ │ ├── project_controlling_necessity-2.png 136 + │ │ ├── project_controlling_necessity.png 137 + │ │ ├── project_controlling_process.png 138 + │ │ └── project_time_controlling.png 139 + │ └── system_integration_and_infrastructure 140 + │ ├── Container_Structure.svg 141 + │ ├── LTO_Roadmap.jpg 142 + │ ├── SAN-Aufbau.png 143 + │ ├── Typ-1-Virtualisierung.png 144 + │ ├── Typ-2-Virtualisierung.png 145 + │ ├── backup-differential.png 146 + │ ├── backup-full.png 147 + │ ├── backup-incremental.png 148 + │ └── generationenprinzip.png 149 + ├── src 150 + │ ├── assets 151 + │ │ ├── components 152 + │ │ │ ├── ContributorList.astro 153 + │ │ │ ├── FacePile.astro 154 + │ │ │ ├── ResponsiveTable.astro 155 + │ │ │ ├── getContributors.ts 156 + │ │ │ └── util-server.ts 157 + │ │ ├── dark-logo.png 158 + │ │ ├── light-logo.png 159 + │ │ ├── logo.png 160 + │ │ └── start_logo.svg 161 + │ ├── components 162 + │ │ ├── CustomPagination.astro 163 + │ │ └── FeedbackComponent.astro 164 + │ ├── content 165 + │ │ ├── config.ts 166 + │ │ └── docs 167 + │ │ ├── 404.md 168 + │ │ ├── de 169 + │ │ │ ├── 404.md 170 + │ │ │ ├── economy_and_law 171 + │ │ │ │ ├── company_foundation.md 172 + │ │ │ │ └── marketing.md 173 + │ │ │ ├── imprint.md 174 + │ │ │ ├── index.mdx 175 + │ │ │ ├── information_technology 176 + │ │ │ │ ├── artificial_intelligence.md 177 + │ │ │ │ ├── decentralised_systems.md 178 + │ │ │ │ ├── embedded_programming.md 179 + │ │ │ │ ├── information_systems.md 180 + │ │ │ │ ├── software_development.md 181 + │ │ │ │ ── system_integration_and_infrastructure.md 182 + │ │ │ ├── languages 183 + │ │ │ │ ├── german_text_types.md 184 + │ │ │ │ ├── literature.md 185 + │ │ │ │ └── text_types.md 186 + │ │ │ └── project_management 187 + │ │ │ ├── magic_triangle.md 188 + │ │ │ └── project_controlling.md 189 + │ │ └── en 190 + │ │ ├── 404.md 191 + │ │ ├── imprint.md 192 + │ │ ├── index.mdx 193 + │ │ └── languages 194 + │ │ └── text_types.md 195 + │ ├── env.d.ts 196 + │ └── styles 197 + │ ├── custom.css 198 + │ ├── landing.css 199 + │ └── print.css 200 + └── tsconfig.json 201 + 202 + ``` 203 + 17 204 ## Installation 18 205 19 206 Please install [PnPm](https://pnpm.io/) beforehand.