From: VGoncalo Date: Sun, 3 May 2026 23:11:58 +0000 (+0100) Subject: more content for webapp-due to commit blockage X-Git-Url: https://vgcfreebox.myrthtech.pt/gitweb/ue-cc-donkeysponsor.git/commitdiff_plain/HEAD?ds=sidebyside more content for webapp-due to commit blockage --- diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 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 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 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 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 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()