diff --git a/cart/__init__.py b/cart/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cart/apps.py b/cart/apps.py new file mode 100644 index 00000000..f243fc4c --- /dev/null +++ b/cart/apps.py @@ -0,0 +1,10 @@ +"""App initialization for cart""" + +from django.apps import AppConfig + + +class CartConfig(AppConfig): + """Config for the cart app""" + + default_auto_field = "django.db.models.BigAutoField" + name = "cart" diff --git a/cart/migrations/__init__.py b/cart/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/cart/templates/base.html b/cart/templates/base.html new file mode 100644 index 00000000..44ea1965 --- /dev/null +++ b/cart/templates/base.html @@ -0,0 +1,19 @@ + +
+