diff --git a/backend/adoption/__init__.py b/backend/adoption/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/backend/adoption/__pycache__/__init__.cpython-312.pyc b/backend/adoption/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..952fb4d95e125e9b2756110d480c5dcfbaa87d57
Binary files /dev/null and b/backend/adoption/__pycache__/__init__.cpython-312.pyc differ
diff --git a/backend/adoption/__pycache__/admin.cpython-312.pyc b/backend/adoption/__pycache__/admin.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..a0d514c1db0edd87addc895538f05f9c9baf8bd3
Binary files /dev/null and b/backend/adoption/__pycache__/admin.cpython-312.pyc differ
diff --git a/backend/adoption/__pycache__/apps.cpython-312.pyc b/backend/adoption/__pycache__/apps.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..be94dcdc0c7746c9ef8419e647de079a015df6a7
Binary files /dev/null and b/backend/adoption/__pycache__/apps.cpython-312.pyc differ
diff --git a/backend/adoption/__pycache__/models.cpython-312.pyc b/backend/adoption/__pycache__/models.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..5bfa71be67bafe0c8ccf94117cc8f9f54e1e5992
Binary files /dev/null and b/backend/adoption/__pycache__/models.cpython-312.pyc differ
diff --git a/backend/adoption/__pycache__/serializers.cpython-312.pyc b/backend/adoption/__pycache__/serializers.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..ba50c71e2b72c86799afadfe666f1e57ce58ab46
Binary files /dev/null and b/backend/adoption/__pycache__/serializers.cpython-312.pyc differ
diff --git a/backend/adoption/__pycache__/urls.cpython-312.pyc b/backend/adoption/__pycache__/urls.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..6a7ee683f5da225c25e4d81cb4933737400d5a07
Binary files /dev/null and b/backend/adoption/__pycache__/urls.cpython-312.pyc differ
diff --git a/backend/adoption/__pycache__/views.cpython-312.pyc b/backend/adoption/__pycache__/views.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..898b9220cfe8e108d0cba9f602444787eedc6ab4
Binary files /dev/null and b/backend/adoption/__pycache__/views.cpython-312.pyc differ
diff --git a/backend/adoption/admin.py b/backend/adoption/admin.py
new file mode 100644
index 0000000000000000000000000000000000000000..480d0c7ea2b8e2a5a50d093b35d8b43909b67255
--- /dev/null
+++ b/backend/adoption/admin.py
@@ -0,0 +1,4 @@
+from django.contrib import admin
+from .models import Pet
+
+admin.site.register(Pet)
diff --git a/backend/adoption/apps.py b/backend/adoption/apps.py
new file mode 100644
index 0000000000000000000000000000000000000000..7a5a7637a1a2a083f75bc8bc231ca6edf4e92dc9
--- /dev/null
+++ b/backend/adoption/apps.py
@@ -0,0 +1,6 @@
+from django.apps import AppConfig
+
+
+class AdoptionConfig(AppConfig):
+ default_auto_field = 'django.db.models.BigAutoField'
+ name = 'adoption'
diff --git a/backend/adoption/migrations/0001_initial.py b/backend/adoption/migrations/0001_initial.py
new file mode 100644
index 0000000000000000000000000000000000000000..c5594b9109bd4eef6373b12ca8442efb8d84fec6
--- /dev/null
+++ b/backend/adoption/migrations/0001_initial.py
@@ -0,0 +1,25 @@
+# Generated by Django 5.1.6 on 2025-02-19 13:56
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Pet',
+ fields=[
+ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('name', models.CharField(max_length=100)),
+ ('breed', models.CharField(max_length=100)),
+ ('age', models.IntegerField()),
+ ('description', models.TextField()),
+ ('available', models.BooleanField(default=True)),
+ ],
+ ),
+ ]
diff --git a/backend/adoption/migrations/__init__.py b/backend/adoption/migrations/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/backend/adoption/migrations/__pycache__/0001_initial.cpython-312.pyc b/backend/adoption/migrations/__pycache__/0001_initial.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..435bb599364204e65336c7e02906f48d78c960c3
Binary files /dev/null and b/backend/adoption/migrations/__pycache__/0001_initial.cpython-312.pyc differ
diff --git a/backend/adoption/migrations/__pycache__/__init__.cpython-312.pyc b/backend/adoption/migrations/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..7fd472d94b1fa45cae6aea27df8f43e46dba4bbc
Binary files /dev/null and b/backend/adoption/migrations/__pycache__/__init__.cpython-312.pyc differ
diff --git a/backend/adoption/models.py b/backend/adoption/models.py
new file mode 100644
index 0000000000000000000000000000000000000000..1722749b71e3b259ad44c57074648aa3631aed05
--- /dev/null
+++ b/backend/adoption/models.py
@@ -0,0 +1,11 @@
+from django.db import models
+
+class Pet(models.Model):
+ name = models.CharField(max_length=100)
+ breed = models.CharField(max_length=100)
+ age = models.IntegerField()
+ description = models.TextField()
+ available = models.BooleanField(default=True)
+
+ def __str__(self):
+ return self.name
diff --git a/backend/adoption/serializers.py b/backend/adoption/serializers.py
new file mode 100644
index 0000000000000000000000000000000000000000..c764b0db6a16d1121e5006b8cba310376185c643
--- /dev/null
+++ b/backend/adoption/serializers.py
@@ -0,0 +1,7 @@
+from rest_framework import serializers
+from .models import Pet
+
+class PetSerializer(serializers.ModelSerializer):
+ class Meta:
+ model = Pet
+ fields = '__all__'
diff --git a/backend/adoption/tests.py b/backend/adoption/tests.py
new file mode 100644
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/backend/adoption/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/backend/adoption/urls.py b/backend/adoption/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..3d67bb6c2c59440c3a92c4687f31ba72255f4285
--- /dev/null
+++ b/backend/adoption/urls.py
@@ -0,0 +1,10 @@
+from django.urls import path, include
+from rest_framework.routers import DefaultRouter
+from .views import PetViewSet
+
+router = DefaultRouter()
+router.register(r'pets', PetViewSet)
+
+urlpatterns = [
+ path('', include(router.urls)),
+]
diff --git a/backend/adoption/views.py b/backend/adoption/views.py
new file mode 100644
index 0000000000000000000000000000000000000000..d1eaffacf498260597d81745d9b80081d28473e0
--- /dev/null
+++ b/backend/adoption/views.py
@@ -0,0 +1,7 @@
+from rest_framework import viewsets
+from .models import Pet
+from .serializers import PetSerializer
+
+class PetViewSet(viewsets.ModelViewSet):
+ queryset = Pet.objects.all()
+ serializer_class = PetSerializer
diff --git a/backend/db.sqlite3 b/backend/db.sqlite3
new file mode 100644
index 0000000000000000000000000000000000000000..31534cfba5aeb113036723d0654b2785dcecdc03
Binary files /dev/null and b/backend/db.sqlite3 differ
diff --git a/backend/manage.py b/backend/manage.py
new file mode 100644
index 0000000000000000000000000000000000000000..e111fd5c2ef4f09f4b31aee0825fbf2b393afd92
--- /dev/null
+++ b/backend/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', 'petfinder.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()
diff --git a/backend/petfinder/__init__.py b/backend/petfinder/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/backend/petfinder/__pycache__/__init__.cpython-312.pyc b/backend/petfinder/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..97d9e5c97cc31ac83f02d6b7f815b6c70ca86598
Binary files /dev/null and b/backend/petfinder/__pycache__/__init__.cpython-312.pyc differ
diff --git a/backend/petfinder/__pycache__/settings.cpython-312.pyc b/backend/petfinder/__pycache__/settings.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..51288a40ab3485466f8a0bdf3297c3cb0d4ec766
Binary files /dev/null and b/backend/petfinder/__pycache__/settings.cpython-312.pyc differ
diff --git a/backend/petfinder/__pycache__/urls.cpython-312.pyc b/backend/petfinder/__pycache__/urls.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..f9f31cb02e2281fa5c84e6a88bf4bc7aa0872611
Binary files /dev/null and b/backend/petfinder/__pycache__/urls.cpython-312.pyc differ
diff --git a/backend/petfinder/__pycache__/wsgi.cpython-312.pyc b/backend/petfinder/__pycache__/wsgi.cpython-312.pyc
new file mode 100644
index 0000000000000000000000000000000000000000..b947c9b1fefc5c4f622086966ef95f4593302c61
Binary files /dev/null and b/backend/petfinder/__pycache__/wsgi.cpython-312.pyc differ
diff --git a/backend/petfinder/asgi.py b/backend/petfinder/asgi.py
new file mode 100644
index 0000000000000000000000000000000000000000..ef4d387fcde88a0bdd78cd00aba360b4ca7a9f74
--- /dev/null
+++ b/backend/petfinder/asgi.py
@@ -0,0 +1,16 @@
+"""
+ASGI config for petfinder project.
+
+It exposes the ASGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/
+"""
+
+import os
+
+from django.core.asgi import get_asgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'petfinder.settings')
+
+application = get_asgi_application()
diff --git a/backend/petfinder/settings.py b/backend/petfinder/settings.py
new file mode 100644
index 0000000000000000000000000000000000000000..2154034cb838f8d109acf50122505989b8de3b54
--- /dev/null
+++ b/backend/petfinder/settings.py
@@ -0,0 +1,125 @@
+"""
+Django settings for petfinder project.
+
+Generated by 'django-admin startproject' using Django 5.1.6.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/5.1/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/5.1/ref/settings/
+"""
+
+from pathlib import Path
+
+# Build paths inside the project like this: BASE_DIR / 'subdir'.
+BASE_DIR = Path(__file__).resolve().parent.parent
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = 'django-insecure-u$es^t57oj5(2bu05)iou(mrersp@80au*ridwlwe86#w*6wni'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = [
+ 'django.contrib.admin',
+ 'django.contrib.auth',
+ 'django.contrib.contenttypes',
+ 'django.contrib.sessions',
+ 'django.contrib.messages',
+ 'django.contrib.staticfiles',
+ 'rest_framework', # Django REST Framework
+ 'adoption', # Your new app
+]
+
+MIDDLEWARE = [
+ 'django.middleware.security.SecurityMiddleware',
+ 'django.contrib.sessions.middleware.SessionMiddleware',
+ 'django.middleware.common.CommonMiddleware',
+ 'django.middleware.csrf.CsrfViewMiddleware',
+ 'django.contrib.auth.middleware.AuthenticationMiddleware',
+ 'django.contrib.messages.middleware.MessageMiddleware',
+ 'django.middleware.clickjacking.XFrameOptionsMiddleware',
+]
+
+ROOT_URLCONF = 'petfinder.urls'
+
+TEMPLATES = [
+ {
+ 'BACKEND': 'django.template.backends.django.DjangoTemplates',
+ 'DIRS': [],
+ 'APP_DIRS': True,
+ 'OPTIONS': {
+ 'context_processors': [
+ 'django.template.context_processors.debug',
+ 'django.template.context_processors.request',
+ 'django.contrib.auth.context_processors.auth',
+ 'django.contrib.messages.context_processors.messages',
+ ],
+ },
+ },
+]
+
+WSGI_APPLICATION = 'petfinder.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/5.1/ref/settings/#databases
+
+DATABASES = {
+ 'default': {
+ 'ENGINE': 'django.db.backends.sqlite3',
+ 'NAME': BASE_DIR / 'db.sqlite3',
+ }
+}
+
+
+# Password validation
+# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators
+
+AUTH_PASSWORD_VALIDATORS = [
+ {
+ 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
+ },
+ {
+ 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
+ },
+]
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/5.1/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/5.1/howto/static-files/
+
+STATIC_URL = 'static/'
+
+# Default primary key field type
+# https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field
+
+DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
diff --git a/backend/petfinder/urls.py b/backend/petfinder/urls.py
new file mode 100644
index 0000000000000000000000000000000000000000..38e0bf6b27149ad65e44ebc22eba27c50b72dd4f
--- /dev/null
+++ b/backend/petfinder/urls.py
@@ -0,0 +1,23 @@
+"""
+URL configuration for petfinder project.
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+ https://docs.djangoproject.com/en/5.1/topics/http/urls/
+Examples:
+Function views
+ 1. Add an import: from my_app import views
+ 2. Add a URL to urlpatterns: path('', views.home, name='home')
+Class-based views
+ 1. Add an import: from other_app.views import Home
+ 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
+Including another URLconf
+ 1. Import the include() function: from django.urls import include, path
+ 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
+"""
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('api/', include('adoption.urls')), # API for pet adoption
+]
diff --git a/backend/petfinder/wsgi.py b/backend/petfinder/wsgi.py
new file mode 100644
index 0000000000000000000000000000000000000000..994bd435d9265e67ee34bac3fddfb2077f89436c
--- /dev/null
+++ b/backend/petfinder/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for petfinder project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'petfinder.settings')
+
+application = get_wsgi_application()