feat: várias melhorias e evoluções no projeto

This commit is contained in:
root
2025-05-26 14:22:19 +02:00
parent 78e994eb6a
commit 9dca0d6022
108 changed files with 2601 additions and 2131 deletions

View File

@ -14,7 +14,7 @@ if __name__ == "__main__":
# issue is really that Django is missing to avoid masking other
# exceptions on Python 2.
try:
import django
pass
except ImportError:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
@ -25,8 +25,8 @@ if __name__ == "__main__":
raise
# This allows easy placement of apps within the interior
# diários_oficiais_alems directory.
# diarios_oficiais_alems directory.
current_path = Path(__file__).parent.resolve()
sys.path.append(str(current_path / "diários_oficiais_alems"))
sys.path.append(str(current_path / "diarios_oficiais_alems"))
execute_from_command_line(sys.argv)