fix(curriculum): add number guessing game lab to frontend cert (#56089)

This commit is contained in:
Ilenia
2024-09-14 20:07:04 +02:00
committed by GitHub
parent 497d7037bf
commit e75a42d615
4 changed files with 50 additions and 1 deletions
+6 -1
View File
@@ -2225,7 +2225,12 @@
"trpm": { "title": "358", "intro": [] },
"ufxg": { "title": "359", "intro": [] },
"lvrx": { "title": "360", "intro": [] },
"ofxk": { "title": "361", "intro": [] },
"lab-number-guessing-game": {
"title": "Build a Number Guessing Game",
"intro": [
"For this lab, you will use Bash scripting, PostgreSQL, and Git to create a number guessing game that runs in the terminal and saves user information."
]
},
"mgoc": { "title": "362", "intro": [] },
"ibmn": { "title": "363", "intro": [] },
"zpjj": { "title": "364", "intro": [] },
@@ -0,0 +1,9 @@
---
title: Introduction to Build a Number Guessing Game
block: lab-number-guessing-game
superBlock: front-end-development
---
## Introduction to Build a Number Guessing Game
For this lab, you will use Bash scripting, PostgreSQL, and Git to create a number guessing game that runs in the terminal and saves user information.
@@ -0,0 +1,10 @@
{
"name": "Build a Number Guessing Game",
"isUpcomingChange": true,
"dashedName": "lab-number-guessing-game",
"order": 361,
"superBlock": "front-end-development",
"challengeOrder": [{ "id": "602da04c22201c65d2a019f4", "title": "Build a Number Guessing Game" }],
"helpCategory": "Backend Development",
"blockType": "lab"
}
@@ -0,0 +1,25 @@
---
id: 602da04c22201c65d2a019f4
title: Build a Number Guessing Game
challengeType: 13
url: freeCodeCamp/learn-number-guessing-game
dashedName: lab-number-guessing-game
---
# --description--
For this lab, you will use Bash scripting, PostgreSQL, and Git to create a number guessing game that runs in the terminal and saves user information.
# --instructions--
**Important:** After you pass all the project tests, save a dump of your database into a `number_guess.sql` file, as well as your `number_guess.sh` file, so you can complete step 2. There will be instructions on how to do that within the virtual machine.
# --notes--
Required files: `number_guess.sql`, `number_guess.sh`
# --hints--
# --seed--
# --solutions--