updated readme

main
Alejandro Restrepo Klinge 2024-04-19 10:33:06 +02:00
parent 52dd79e793
commit 15a81d7f37
1 changed files with 9 additions and 3 deletions

View File

@ -21,12 +21,18 @@ Bewertet werden vor allem Kreativität der Aufgabe, Sorgfalt und didaktischer Au
## Quellen ## Quellen
https://www.kaggle.com/datasets/sakshisatre/titanic-dataset/data https://www.kaggle.com/datasets/sakshisatre/titanic-dataset/data
https://chat.openai.com/
## Commands init db in docker (Mit beigefügte container nicht notwendig) ## Commands init db in docker (Mit beigefügte container nicht notwendig)
copy init.sql to /tmp/init.sql
copy data/passengers.csv to /var/lib/mysql-files/passengers.csv
1. copy init.sql to /tmp/init.sql
1. copy data/passengers.csv to /var/lib/mysql-files/passengers.csv
```
mysql -u root -p mysql -u root -p
SET sql_mode = ''; SET sql_mode = '';
```
source /tmp/init.sql; ```
source /tmp/init.sql;
```