diff --git a/challenges/03-back-end-development-certification/api-projects.json b/challenges/03-back-end-development-certification/api-projects.json index deedb1f931..4fa1314ced 100644 --- a/challenges/03-back-end-development-certification/api-projects.json +++ b/challenges/03-back-end-development-certification/api-projects.json @@ -58,8 +58,8 @@ ], [ "//i.imgur.com/2a20Vah.gif", - "A gif showing you how to start mongoDB in c9.io's terminal.", - "In your terminal, start MongoDB by entering:

mongod --smallfiles", + "A gif showing you how to install MongoDB and start it in c9.io's terminal.", + "In your terminal, install MongoDB by entering:

sudo apt-get install mongodb-org

then start MongoDB by entering:

mongod --smallfiles", "" ], [ @@ -151,7 +151,7 @@ [ "//i.imgur.com/2a20Vah.gif", "Una imagen gif que te muestra cómo iniciar mongoDB en la terminal de c9.io.", - "En tu terminal, inicia MongoDB con el siguiente comando: mongod --smallfiles", + "En tu terminal, instala MongoDB usando el siguiente comando:

sudo apt-get install mongodb-org

. Inicia MongoDB con el siguiente comando: mongod --smallfiles", "" ], [ diff --git a/challenges/03-back-end-development-certification/mongodb.json b/challenges/03-back-end-development-certification/mongodb.json index 21b5eee22b..453b310605 100644 --- a/challenges/03-back-end-development-certification/mongodb.json +++ b/challenges/03-back-end-development-certification/mongodb.json @@ -17,6 +17,7 @@ "Click the \"Create workspace\" button.", "Once C9 builds and loads your workspace, you should see a terminal window in the lower right hand corner. In this window use the following commands. You don't need to know what these mean at this point.", "Install learnyoumongo with this command: npm install learnyoumongo -g", + "Install MongoDB with this command: sudo apt-get install mongodb-org", "Set up your mongod alias by following the directions at https://community.c9.io/t/setting-up-mongodb/1717.", "Now start the tutorial by running learnyoumongo.", "Whenever you run a command that includes mongod on c9.io, use ./mongod instead.", @@ -51,6 +52,7 @@ "Haz click en el botón que dice \"Create workspace\".", "Una vez C9 termine de cargar tu espacio de trabajo, verás una terminal en la ventana de la esquina inferior derecha. Introduce los comandos siguientes en esa ventana (no te preocupes si no entiendes por ahora qué es lo que hacen):", "Instala learnyoumongo usando el siguiente comando: npm install learnyoumongo -g", + "Instala MongoDB usando el siguiente comando: sudo apt-get install mongodb-org", "Ahora inicia el tutorial ejecutando learnyoumongo", "Siempre que ejecutes un comando que incluya mongod en c9.io, asegúrate de usar la bandera --nojournal. Por ejemplo: mongod --nojournal.", "Puedes modificar el tamaño de las ventanas en c9.io arrastrándolas por el borde.",