├── .DS_Store ├── .github └── workflows │ └── pylint.yml ├── .gitignore ├── Dockerfile ├── README.md ├── api ├── .DS_Store ├── __init__.py ├── admin.py ├── management │ ├── .DS_Store │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── generate_andi_user.py │ │ └── generate_random_users.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── django_tinder ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── docker ├── .DS_Store └── db │ ├── custom_pg_hba.conf │ └── custom_postgresql.conf ├── manage.py ├── pytest.ini └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | # dotenv 3 | .env -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/README.md -------------------------------------------------------------------------------- /api/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/.DS_Store -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/admin.py -------------------------------------------------------------------------------- /api/management/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/management/.DS_Store -------------------------------------------------------------------------------- /api/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/management/commands/generate_andi_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/management/commands/generate_andi_user.py -------------------------------------------------------------------------------- /api/management/commands/generate_random_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/management/commands/generate_random_users.py -------------------------------------------------------------------------------- /api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/models.py -------------------------------------------------------------------------------- /api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/serializers.py -------------------------------------------------------------------------------- /api/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/tests.py -------------------------------------------------------------------------------- /api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/urls.py -------------------------------------------------------------------------------- /api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/api/views.py -------------------------------------------------------------------------------- /django_tinder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_tinder/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/django_tinder/settings.py -------------------------------------------------------------------------------- /django_tinder/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/django_tinder/urls.py -------------------------------------------------------------------------------- /django_tinder/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/django_tinder/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/docker/.DS_Store -------------------------------------------------------------------------------- /docker/db/custom_pg_hba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/docker/db/custom_pg_hba.conf -------------------------------------------------------------------------------- /docker/db/custom_postgresql.conf: -------------------------------------------------------------------------------- 1 | listen_addresses = '*' 2 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/manage.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andilabs/django-tinder/HEAD/requirements.txt --------------------------------------------------------------------------------