├── .gitignore ├── Procfile ├── README.md ├── accounts ├── __init__.py ├── adapters.py ├── admin.py ├── apps.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_user_is_admin.py │ ├── 0003_address.py │ ├── 0004_auto_20200721_0026.py │ ├── 0005_auto_20200721_0047.py │ ├── 0006_auto_20200722_0116.py │ ├── 0007_auto_20200722_1407.py │ ├── 0008_auto_20200722_1408.py │ ├── 0009_auto_20200728_1758.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media └── images │ └── product │ ├── after_hours.jpg │ └── no-image.jpg ├── orders ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_drop_all_tables.py │ ├── 0003_auto_20200728_1758.py │ ├── 0004_auto_20200728_1850.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── procure ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── products ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200716_2043.py │ ├── 0003_auto_20200717_0025.py │ ├── 0004_auto_20200717_2228.py │ ├── 0005_product_slug.py │ ├── 0006_auto_20200719_2253.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── requirements.txt └── utils └── paystack.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn procure.wsgi 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/adapters.py -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/managers.py -------------------------------------------------------------------------------- /accounts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0001_initial.py -------------------------------------------------------------------------------- /accounts/migrations/0002_remove_user_is_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0002_remove_user_is_admin.py -------------------------------------------------------------------------------- /accounts/migrations/0003_address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0003_address.py -------------------------------------------------------------------------------- /accounts/migrations/0004_auto_20200721_0026.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0004_auto_20200721_0026.py -------------------------------------------------------------------------------- /accounts/migrations/0005_auto_20200721_0047.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0005_auto_20200721_0047.py -------------------------------------------------------------------------------- /accounts/migrations/0006_auto_20200722_0116.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0006_auto_20200722_0116.py -------------------------------------------------------------------------------- /accounts/migrations/0007_auto_20200722_1407.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0007_auto_20200722_1407.py -------------------------------------------------------------------------------- /accounts/migrations/0008_auto_20200722_1408.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0008_auto_20200722_1408.py -------------------------------------------------------------------------------- /accounts/migrations/0009_auto_20200728_1758.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/migrations/0009_auto_20200728_1758.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/serializers.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/accounts/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/manage.py -------------------------------------------------------------------------------- /media/images/product/after_hours.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/media/images/product/after_hours.jpg -------------------------------------------------------------------------------- /media/images/product/no-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/media/images/product/no-image.jpg -------------------------------------------------------------------------------- /orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orders/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/admin.py -------------------------------------------------------------------------------- /orders/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/apps.py -------------------------------------------------------------------------------- /orders/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/migrations/0001_initial.py -------------------------------------------------------------------------------- /orders/migrations/0002_drop_all_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/migrations/0002_drop_all_tables.py -------------------------------------------------------------------------------- /orders/migrations/0003_auto_20200728_1758.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/migrations/0003_auto_20200728_1758.py -------------------------------------------------------------------------------- /orders/migrations/0004_auto_20200728_1850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/migrations/0004_auto_20200728_1850.py -------------------------------------------------------------------------------- /orders/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orders/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/models.py -------------------------------------------------------------------------------- /orders/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/serializers.py -------------------------------------------------------------------------------- /orders/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/tests.py -------------------------------------------------------------------------------- /orders/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/urls.py -------------------------------------------------------------------------------- /orders/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/orders/views.py -------------------------------------------------------------------------------- /procure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /procure/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/procure/asgi.py -------------------------------------------------------------------------------- /procure/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/procure/settings.py -------------------------------------------------------------------------------- /procure/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/procure/urls.py -------------------------------------------------------------------------------- /procure/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/procure/wsgi.py -------------------------------------------------------------------------------- /products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /products/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/admin.py -------------------------------------------------------------------------------- /products/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/apps.py -------------------------------------------------------------------------------- /products/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/migrations/0001_initial.py -------------------------------------------------------------------------------- /products/migrations/0002_auto_20200716_2043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/migrations/0002_auto_20200716_2043.py -------------------------------------------------------------------------------- /products/migrations/0003_auto_20200717_0025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/migrations/0003_auto_20200717_0025.py -------------------------------------------------------------------------------- /products/migrations/0004_auto_20200717_2228.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/migrations/0004_auto_20200717_2228.py -------------------------------------------------------------------------------- /products/migrations/0005_product_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/migrations/0005_product_slug.py -------------------------------------------------------------------------------- /products/migrations/0006_auto_20200719_2253.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/migrations/0006_auto_20200719_2253.py -------------------------------------------------------------------------------- /products/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /products/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/models.py -------------------------------------------------------------------------------- /products/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/serializers.py -------------------------------------------------------------------------------- /products/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/tests.py -------------------------------------------------------------------------------- /products/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/urls.py -------------------------------------------------------------------------------- /products/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/products/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/paystack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Damephena/procure/HEAD/utils/paystack.py --------------------------------------------------------------------------------