]> vgcfreebox.myrthtech.pt Git - ue-cc-donkeysponsor.git/commitdiff
more content for webapp-due to commit blockage main
authorVGoncalo <vitor.goncalo.costa@gmail.com>
Sun, 3 May 2026 23:11:58 +0000 (00:11 +0100)
committerVGoncalo <vitor.goncalo.costa@gmail.com>
Sun, 3 May 2026 23:11:58 +0000 (00:11 +0100)
db.sqlite3 [new file with mode: 0644]
donkey_covers/dacia.jpg [new file with mode: 0644]
donkey_posts/.DS_Store [new file with mode: 0644]
donkey_posts/dacia.jpg [new file with mode: 0644]
manage.py [new file with mode: 0755]

diff --git a/db.sqlite3 b/db.sqlite3
new file mode 100644 (file)
index 0000000..a1b5c28
Binary files /dev/null and b/db.sqlite3 differ
diff --git a/donkey_covers/dacia.jpg b/donkey_covers/dacia.jpg
new file mode 100644 (file)
index 0000000..5f35adb
Binary files /dev/null and b/donkey_covers/dacia.jpg differ
diff --git a/donkey_posts/.DS_Store b/donkey_posts/.DS_Store
new file mode 100644 (file)
index 0000000..5008ddf
Binary files /dev/null and b/donkey_posts/.DS_Store differ
diff --git a/donkey_posts/dacia.jpg b/donkey_posts/dacia.jpg
new file mode 100644 (file)
index 0000000..5f35adb
Binary files /dev/null and b/donkey_posts/dacia.jpg differ
diff --git a/manage.py b/manage.py
new file mode 100755 (executable)
index 0000000..cffeea7
--- /dev/null
+++ b/manage.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+"""Django's command-line utility for administrative tasks."""
+import os
+import sys
+
+
+def main():
+    """Run administrative tasks."""
+    os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'donkeys.settings')
+    try:
+        from django.core.management import execute_from_command_line
+    except ImportError as exc:
+        raise ImportError(
+            "Couldn't import Django. Are you sure it's installed and "
+            "available on your PYTHONPATH environment variable? Did you "
+            "forget to activate a virtual environment?"
+        ) from exc
+    execute_from_command_line(sys.argv)
+
+
+if __name__ == '__main__':
+    main()