Skip to content

Commit

Permalink
Merge pull request #11 from Lorenagubaira/master
Browse files Browse the repository at this point in the history
update readme & template_url
  • Loading branch information
tommygonzaleza authored Jan 8, 2025
2 parents 02d8184 + 72fa197 commit 24ab275
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 15 deletions.
18 changes: 12 additions & 6 deletions README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,30 @@

Crea una aplicación de lista de tareas o de todos que le permita a los usuarios añadir y eliminar tareas desde la terminal.

<onlyfor saas="false" withBanner="false">

## 🌱 Cómo iniciar este proyecto

1. Este proyecto viene con los archivos necesarios para empezar a trabajar, pero tienes dos opciones para empezar:

a) Abrir este link con Gitpod (recomendada) en tu navegador: https://gitpod.io#https://github.com/breatheco-de/exercise-todo-list-cli
a) Abrir este enlace con [Codespaces](https://4geeks.com/es/lesson/tutorial-de-github-codespaces) (recomendado) o [Gitpod](https://4geeks.com/es/lesson/como-utilizar-gitpod) en tu navegador: https://github.com/codespaces/new/?repo=4GeeksAcademy/python-hello

b) Clonar este repositorio localmente en tu computador:

```sh
$ git clone https://github.com/breatheco-de/exercise-todo-list-cli
$ git clone https://github.com/4GeeksAcademy/python-hello
```
2. Puedes probar tu código escribiendo en la terminal: `$ python3 test.py`

3. Puedes ejecutar tu código escribiendo en la terminal: `$ python3 app.py`.
### Pasos

- Si trabajas localmente, debe tener python [instalado](https://4geeks.com/es/how-to/como-instalar-python).

- Deberías abrir el terminal en la ruta de esta plantilla y ejecutar `$ python3 app.py`, si todo funciona correctamente, debería mostrar `Hello World` en el terminal.

- Puedes probar tu código escribiendo `$ python3 test.py`.

💡 Importante: Recuerda actualizar el `remote` del proyecto con el de tu repositorio usando `git remote set-url origin <your new url>`, y luego guardar tu código en tu nuevo repositorio usando `add`, `commit` y `push`.

</onlyfor>

## 📝 Instrucciones

Estas son las funciones que tendrás que implementar:
Expand Down
28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,31 @@

Create a TODO list application that allows users to add and delete tasks from the command line.

<onlyfor saas="false" withBanner="false">

## 🌱 How to start this project

1. This project comes with the necessary files to start working, but you have two options to start:
a) Open this link in your browser with [Codespaces](https://4geeks.com/lesson/what-is-github-codespaces) (recommended) or [Gitpod](https://4geeks.com/lesson/how-to-use-gitpod): https://github.com/codespaces/new/?repo=4GeeksAcademy/python-hello

a) Use gitpod: open this link in your browser to clone it with gitpod: https://gitpod.io#https://github.com/breatheco-de/exercise-todo-list-cli
b) You can clone this repository on your local computer:

```bash
$ git clone https://github.com/breatheco-de/exercise-todo-list-cli
$ git clone https://github.com/4GeeksAcademy/python-hello
```

2.
+ You can test your code by typing: `$ python3 test.py`.
+ You can run your code by typing: `$ python3 app.py`.
### Steps

- If working locally, you should have python [installed](https://4geeks.com/how-to/how-to-install-python).

- You should open the terminal on the path of this template and run `$ python3 app.py`, if everything works correctly, it should show `Hello World` on the terminal.

- You can test your code by typing: `$ python3 test.py`.

💡 Important: Remember to create a new repository, update the remote (`git remote set-url origin <your new url>`), and upload the code to your new repository using `add`, `commit` and `push`.

</onlyfor>

## 📝 Instructions

These are the functions you will have to implement:

Expand All @@ -32,9 +44,7 @@ def save_todos():
def load_todos():
```

## 📝 Instructions

- Your app needs to work from the command line [like this](https://4geeks.com/interactive-coding-tutorial/beginner/todo-list-cli-python).
- You app needs to work from the the command line [like this](https://4geeks.com/interactive-coding-tutorial/beginner/todo-list-cli-python).
- The user should be able to add new tasks
- The user can add as many tasks as he/she wants.
- The user can delete tasks by specifying the task position in the list.
Expand Down
1 change: 1 addition & 0 deletions learn.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"status": "published",
"live-url": "",
"duration" : 8,
"template_url": "https://github.com/4GeeksAcademy/python-hello",
"difficulty": "beginner",
"template_url": "self",
"solution": "https://github.com/breatheco-de/todo-list-cli-python/tree/solution",
Expand Down

0 comments on commit 24ab275

Please sign in to comment.