├── .gitignore ├── README.md ├── db.yml ├── poetry.lock ├── pyproject.toml └── src ├── config ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── referral_system ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py └── user ├── __init__.py ├── admin.py ├── apps.py ├── manager.py ├── migrations ├── 0001_initial.py └── __init__.py ├── models.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/README.md -------------------------------------------------------------------------------- /db.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/db.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/config/asgi.py -------------------------------------------------------------------------------- /src/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/config/settings.py -------------------------------------------------------------------------------- /src/config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/config/urls.py -------------------------------------------------------------------------------- /src/config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/config/wsgi.py -------------------------------------------------------------------------------- /src/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/manage.py -------------------------------------------------------------------------------- /src/referral_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referral_system/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/admin.py -------------------------------------------------------------------------------- /src/referral_system/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/apps.py -------------------------------------------------------------------------------- /src/referral_system/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/referral_system/migrations/0002_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/migrations/0002_initial.py -------------------------------------------------------------------------------- /src/referral_system/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/referral_system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/models.py -------------------------------------------------------------------------------- /src/referral_system/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/serializers.py -------------------------------------------------------------------------------- /src/referral_system/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/tests.py -------------------------------------------------------------------------------- /src/referral_system/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/urls.py -------------------------------------------------------------------------------- /src/referral_system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/referral_system/views.py -------------------------------------------------------------------------------- /src/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/user/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/user/admin.py -------------------------------------------------------------------------------- /src/user/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/user/apps.py -------------------------------------------------------------------------------- /src/user/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/user/manager.py -------------------------------------------------------------------------------- /src/user/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/user/migrations/0001_initial.py -------------------------------------------------------------------------------- /src/user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/user/models.py -------------------------------------------------------------------------------- /src/user/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mur4ik18/django-referral-system/HEAD/src/user/tests.py -------------------------------------------------------------------------------- /src/user/views.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------