forked from frlp-utn-ingsoft/vetsoft
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
651b940
commit d1cee04
Showing
1 changed file
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,27 @@ | ||
# Ignorar archivos y directorios generados durante el desarrollo | ||
*.pyc | ||
__pycache__ | ||
# Ignorar archivos de configuración local | ||
# Archivos sensibles | ||
.env | ||
config/local_config.py | ||
# Ignorar archivos de git | ||
*.key | ||
*.pem | ||
|
||
# Archivos de control de versiones | ||
.git | ||
.gitignore | ||
# Ignorar archivos Logs o Temporales | ||
logs/ | ||
tmp/ | ||
.hg | ||
|
||
# Archivos temporales y de compilación | ||
_pycache_ | ||
*.pyc | ||
*.pyo | ||
*.log | ||
|
||
# Copias de seguridad y archivos temporales de editores | ||
*.bak | ||
*.swp | ||
|
||
# Documentación y otros archivos no necesarios | ||
README.md | ||
docs/ | ||
|
||
# Archivos de desarrollo local | ||
.vscode/ | ||
.idea/ | ||
tests/ |