Gestor de Tareas is intentionally minimal in its configuration surface. There are no config files, no environment variables, and no command-line flags. The only setting the application exposes is the name (and optionally the path) of the JSON file used to store tasks. Everything else — menu text, field names, indentation — is hard-coded inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/FranksGP/Gestor_de_tareas/llms.txt
Use this file to discover all available pages before exploring further.
index.py and can be changed by editing the source directly.
TASKS_FILE constant
The storage filename is defined as a module-level constant on line 4 ofindex.py:
cargarTask(), guardarTask(), and by extension agregarTask(), listarTask(), tareaCompletada(), and delete_task() — references this constant rather than a hard-coded string. Changing the value of TASKS_FILE once at the top of the file is therefore sufficient to redirect all storage to a different filename.
Changing the storage filename
Openindex.py in any text editor and replace the value on line 4:
index.py, the application will read from and write to mis_tareas.json instead. Any tasks stored in the old Tareas.json will not be visible until you either rename the file to match the new constant or revert the change.
Custom file path
BecauseTASKS_FILE is a relative path, its effective location depends on the directory from which you launch the script — not the directory where index.py lives. This is standard Python behaviour: relative paths are resolved against the process’s current working directory.
For example:
TASKS_FILE to an absolute path:
Gestor de Tareas does not read from
.env files, system environment variables, or any external configuration file. All configuration is done by editing index.py directly. This keeps the project dependency-free and easy to understand, but it does mean that configuration changes require a source-code edit rather than a runtime flag.