├── DockerfileNode ├── DockerfilePostgres ├── DockerfilePython ├── README.md ├── code ├── django_db │ └── init-user-db.sh ├── django_rest_api │ ├── .gitignore │ ├── requirements.txt │ ├── run-migrate-and-server.sh │ └── test_app │ │ ├── manage.py │ │ ├── test_app │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ │ └── webapi │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── apps.py │ │ ├── fixtures │ │ └── profiles.json │ │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── serializers.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py └── django_web_front │ ├── .gitignore │ ├── README.md │ ├── npm-install-and-start.sh │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── serviceWorker.js │ └── yarn.lock ├── docker-compose.yml └── img ├── docker_settings.png └── sample_image.png /DockerfileNode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/DockerfileNode -------------------------------------------------------------------------------- /DockerfilePostgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/DockerfilePostgres -------------------------------------------------------------------------------- /DockerfilePython: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/DockerfilePython -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/README.md -------------------------------------------------------------------------------- /code/django_db/init-user-db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_db/init-user-db.sh -------------------------------------------------------------------------------- /code/django_rest_api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/.gitignore -------------------------------------------------------------------------------- /code/django_rest_api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/requirements.txt -------------------------------------------------------------------------------- /code/django_rest_api/run-migrate-and-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/run-migrate-and-server.sh -------------------------------------------------------------------------------- /code/django_rest_api/test_app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/manage.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/django_rest_api/test_app/test_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/test_app/settings.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/test_app/urls.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/test_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/test_app/wsgi.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/admin.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/apps.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/fixtures/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/fixtures/profiles.json -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/migrations/0001_initial.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/models.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/serializers.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/tests.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/urls.py -------------------------------------------------------------------------------- /code/django_rest_api/test_app/webapi/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_rest_api/test_app/webapi/views.py -------------------------------------------------------------------------------- /code/django_web_front/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/.gitignore -------------------------------------------------------------------------------- /code/django_web_front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/README.md -------------------------------------------------------------------------------- /code/django_web_front/npm-install-and-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/npm-install-and-start.sh -------------------------------------------------------------------------------- /code/django_web_front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/package-lock.json -------------------------------------------------------------------------------- /code/django_web_front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/package.json -------------------------------------------------------------------------------- /code/django_web_front/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/public/favicon.ico -------------------------------------------------------------------------------- /code/django_web_front/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/public/index.html -------------------------------------------------------------------------------- /code/django_web_front/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/public/manifest.json -------------------------------------------------------------------------------- /code/django_web_front/src/App.css: -------------------------------------------------------------------------------- 1 | #user-table { 2 | overflow: scroll; 3 | } 4 | -------------------------------------------------------------------------------- /code/django_web_front/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/src/App.js -------------------------------------------------------------------------------- /code/django_web_front/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/src/App.test.js -------------------------------------------------------------------------------- /code/django_web_front/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/src/index.css -------------------------------------------------------------------------------- /code/django_web_front/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/src/index.js -------------------------------------------------------------------------------- /code/django_web_front/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/src/logo.svg -------------------------------------------------------------------------------- /code/django_web_front/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/src/serviceWorker.js -------------------------------------------------------------------------------- /code/django_web_front/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/code/django_web_front/yarn.lock -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/docker_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/img/docker_settings.png -------------------------------------------------------------------------------- /img/sample_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hodanov/react-django-postgres-sample-app/HEAD/img/sample_image.png --------------------------------------------------------------------------------