├── .env ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docker-compose.prod.yml ├── docker-compose.yml ├── nginx ├── Dockerfile └── nginx.conf └── web ├── .dockerignore ├── Dockerfile ├── app ├── .flake8 ├── app │ ├── __init__.py │ ├── celery.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── bank │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_account.py │ │ ├── 0003_auto_20190512_0902.py │ │ ├── 0004_auto_20190514_1043.py │ │ ├── 0005_transfer.py │ │ ├── 0006_remove_transfer_user.py │ │ ├── 0007_interest.py │ │ ├── 0008_auto_20190521_0743.py │ │ ├── 0009_auto_20190521_1030.py │ │ ├── 0010_auto_20190521_1033.py │ │ ├── 0011_auto_20190521_1056.py │ │ ├── 0012_auto_20190521_1056.py │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── serializers.py │ ├── services.py │ ├── tasks.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_account_api.py │ │ ├── test_action_api.py │ │ ├── test_customer_api.py │ │ ├── test_models.py │ │ └── test_services.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── manage.py └── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── tests │ ├── __init__.py │ └── test_user_api.py │ └── views.py ├── entrypoint.sh └── requirements.txt /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Django REST framework Bank app 2 | -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/.dockerignore -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/app/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/.flake8 -------------------------------------------------------------------------------- /web/app/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/app/__init__.py -------------------------------------------------------------------------------- /web/app/app/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/app/celery.py -------------------------------------------------------------------------------- /web/app/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/app/settings.py -------------------------------------------------------------------------------- /web/app/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/app/urls.py -------------------------------------------------------------------------------- /web/app/app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/app/wsgi.py -------------------------------------------------------------------------------- /web/app/bank/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/bank/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/admin.py -------------------------------------------------------------------------------- /web/app/bank/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/apps.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0001_initial.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0002_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0002_account.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0003_auto_20190512_0902.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0003_auto_20190512_0902.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0004_auto_20190514_1043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0004_auto_20190514_1043.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0005_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0005_transfer.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0006_remove_transfer_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0006_remove_transfer_user.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0007_interest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0007_interest.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0008_auto_20190521_0743.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0008_auto_20190521_0743.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0009_auto_20190521_1030.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0009_auto_20190521_1030.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0010_auto_20190521_1033.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0010_auto_20190521_1033.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0011_auto_20190521_1056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0011_auto_20190521_1056.py -------------------------------------------------------------------------------- /web/app/bank/migrations/0012_auto_20190521_1056.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/migrations/0012_auto_20190521_1056.py -------------------------------------------------------------------------------- /web/app/bank/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/bank/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/mixins.py -------------------------------------------------------------------------------- /web/app/bank/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/models.py -------------------------------------------------------------------------------- /web/app/bank/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/serializers.py -------------------------------------------------------------------------------- /web/app/bank/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/services.py -------------------------------------------------------------------------------- /web/app/bank/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/tasks.py -------------------------------------------------------------------------------- /web/app/bank/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/bank/tests/test_account_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/tests/test_account_api.py -------------------------------------------------------------------------------- /web/app/bank/tests/test_action_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/tests/test_action_api.py -------------------------------------------------------------------------------- /web/app/bank/tests/test_customer_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/tests/test_customer_api.py -------------------------------------------------------------------------------- /web/app/bank/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/tests/test_models.py -------------------------------------------------------------------------------- /web/app/bank/tests/test_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/tests/test_services.py -------------------------------------------------------------------------------- /web/app/bank/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/urls.py -------------------------------------------------------------------------------- /web/app/bank/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/utils.py -------------------------------------------------------------------------------- /web/app/bank/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/bank/views.py -------------------------------------------------------------------------------- /web/app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/manage.py -------------------------------------------------------------------------------- /web/app/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/users/admin.py -------------------------------------------------------------------------------- /web/app/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/users/apps.py -------------------------------------------------------------------------------- /web/app/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /web/app/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/users/models.py -------------------------------------------------------------------------------- /web/app/users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/app/users/tests/test_user_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/app/users/tests/test_user_api.py -------------------------------------------------------------------------------- /web/app/users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /web/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/entrypoint.sh -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glebmikha/django-rest-framework-bank/HEAD/web/requirements.txt --------------------------------------------------------------------------------