From 497d7037bf99d2b3d68366e7fced7743d92cd9ed Mon Sep 17 00:00:00 2001 From: Ilenia <26656284+ilenia-magoni@users.noreply.github.com> Date: Sat, 14 Sep 2024 20:05:56 +0200 Subject: [PATCH] chore(curriculum): add world cup database lab to frontend cert (#56077) --- client/i18n/locales/english/intro.json | 7 +++++- .../lab-world-cup-database/index.md | 9 +++++++ .../_meta/lab-world-cup-database/meta.json | 12 +++++++++ .../5f9771307d4d22b9d2b75a94.md | 25 +++++++++++++++++++ 4 files changed, 52 insertions(+), 1 deletion(-) create mode 100644 client/src/pages/learn/front-end-development/lab-world-cup-database/index.md create mode 100644 curriculum/challenges/_meta/lab-world-cup-database/meta.json create mode 100644 curriculum/challenges/english/25-front-end-development/lab-world-cup-database/5f9771307d4d22b9d2b75a94.md diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index 76f52c6906e..d6c2ce9204c 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -2207,7 +2207,12 @@ "udfh": { "title": "345", "intro": [] }, "kuyg": { "title": "346", "intro": [] }, "tvlh": { "title": "347", "intro": [] }, - "lhwu": { "title": "348", "intro": [] }, + "lab-world-cup-database": { + "title": "Build a World Cup Database", + "intro": [ + "For this project, you will create a Bash script that enters information from World Cup games into PostgreSQL, then query the database for useful statistics." + ] + }, "mtkd": { "title": "349", "intro": [] }, "wgfc": { "title": "350", "intro": [] }, "sldv": { "title": "351", "intro": [] }, diff --git a/client/src/pages/learn/front-end-development/lab-world-cup-database/index.md b/client/src/pages/learn/front-end-development/lab-world-cup-database/index.md new file mode 100644 index 00000000000..9da49bfb43e --- /dev/null +++ b/client/src/pages/learn/front-end-development/lab-world-cup-database/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Build a World Cup Database +block: lab-world-cup-database +superBlock: front-end-development +--- + +## Introduction to the Build a World Cup Database + +For this project, you will create a Bash script that enters information from World Cup games into PostgreSQL, then query the database for useful statistics. diff --git a/curriculum/challenges/_meta/lab-world-cup-database/meta.json b/curriculum/challenges/_meta/lab-world-cup-database/meta.json new file mode 100644 index 00000000000..0eaf6479f37 --- /dev/null +++ b/curriculum/challenges/_meta/lab-world-cup-database/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Build a World Cup Database", + "isUpcomingChange": true, + "usesMultifileEditor": true, + "hasEditableBoundaries": true, + "dashedName": "lab-world-cup-database", + "order": 348, + "superBlock": "front-end-development", + "challengeOrder": [{ "id": "5f9771307d4d22b9d2b75a94", "title": "Build a World Cup Database" }], + "helpCategory": "Backend Development", + "blockType": "lab" +} diff --git a/curriculum/challenges/english/25-front-end-development/lab-world-cup-database/5f9771307d4d22b9d2b75a94.md b/curriculum/challenges/english/25-front-end-development/lab-world-cup-database/5f9771307d4d22b9d2b75a94.md new file mode 100644 index 00000000000..d77442a1bae --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/lab-world-cup-database/5f9771307d4d22b9d2b75a94.md @@ -0,0 +1,25 @@ +--- +id: 5f9771307d4d22b9d2b75a94 +title: Build a World Cup Database +challengeType: 13 +url: freeCodeCamp/learn-world-cup-database +dashedName: lab-world-cup-database +--- + +# --description-- + +For this project, you will create a Bash script that enters information from World Cup games into PostgreSQL, then query the database for useful statistics. + +# --instructions-- + +**Important:** After you pass all the project tests, save a dump of your database into a `worldcup.sql` file, as well as your `insert_data.sh` and `queries.sh` files, so you can complete step 2. There will be instructions how to do that within the virtual machine. + +# --notes-- + +Required files: `worldcup.sql`, `insert_data.sh`, `queries.sh` + +# --hints-- + +# --seed-- + +# --solutions--