├── .gitignore ├── .idea ├── django-rest-react-pycon.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── watcherTasks.xml ├── LICENSE ├── Procfile ├── README.md ├── create_react_app_1 ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── react-app │ ├── .gitignore │ ├── README.md │ ├── cypress.json │ ├── cypress │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── features │ │ │ │ └── Login │ │ │ │ └── Login.spec.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── index.js │ ├── jsconfig.json │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ └── src │ │ ├── app │ │ ├── App.js │ │ └── app.css │ │ ├── common │ │ ├── Api.js │ │ └── components │ │ │ ├── Button.js │ │ │ ├── Form.js │ │ │ ├── Input.js │ │ │ ├── Link.js │ │ │ └── Message.js │ │ ├── features │ │ ├── Links │ │ │ └── Links.js │ │ └── Login │ │ │ └── Login.js │ │ └── index.js ├── tests.py ├── urls.py └── views.py ├── custom_webpack_conf_2 ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── serializers.py ├── src │ ├── .babelrc │ ├── .idea │ │ ├── dictionaries │ │ │ └── valentino.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── src.iml │ │ ├── vcs.xml │ │ ├── watcherTasks.xml │ │ └── workspace.xml │ ├── README.md │ ├── app │ │ ├── App.js │ │ ├── reducers │ │ │ └── rootReducer.js │ │ └── store │ │ │ └── configureStore.js │ ├── common │ │ ├── Api.js │ │ └── components │ │ │ ├── Button.js │ │ │ ├── Form.js │ │ │ ├── Input.js │ │ │ ├── Link.js │ │ │ └── Message.js │ ├── cypress.json │ ├── cypress │ │ ├── fixtures │ │ │ └── example.json │ │ ├── integration │ │ │ └── features │ │ │ │ └── Login │ │ │ │ └── Login.spec.js │ │ ├── plugins │ │ │ └── index.js │ │ └── support │ │ │ ├── commands.js │ │ │ └── index.js │ ├── features │ │ ├── Links │ │ │ ├── Links.js │ │ │ └── modules │ │ │ │ └── links.js │ │ └── Login │ │ │ ├── Login.js │ │ │ └── modules │ │ │ └── login.js │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── webpack.config.js ├── static │ └── custom_webpack_conf_2 │ │ ├── css │ │ └── main.css │ │ └── js │ │ └── main.js ├── templates │ └── custom_webpack_conf_2 │ │ └── index.html ├── tests │ ├── DummyFactory.py │ ├── __init__.py │ ├── api.py │ └── models.py ├── urls.py └── views.py ├── django_rest_react ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── dev.py │ └── prod.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt ├── requirements ├── base.txt ├── dev.txt └── prod.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/django-rest-react-pycon.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.idea/django-rest-react-pycon.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/README.md -------------------------------------------------------------------------------- /create_react_app_1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_react_app_1/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/admin.py -------------------------------------------------------------------------------- /create_react_app_1/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/apps.py -------------------------------------------------------------------------------- /create_react_app_1/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_react_app_1/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/models.py -------------------------------------------------------------------------------- /create_react_app_1/react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/.gitignore -------------------------------------------------------------------------------- /create_react_app_1/react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/README.md -------------------------------------------------------------------------------- /create_react_app_1/react-app/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:3000" 3 | } 4 | -------------------------------------------------------------------------------- /create_react_app_1/react-app/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/cypress/fixtures/example.json -------------------------------------------------------------------------------- /create_react_app_1/react-app/cypress/integration/features/Login/Login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/cypress/integration/features/Login/Login.spec.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/cypress/plugins/index.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/cypress/support/commands.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/cypress/support/index.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/jsconfig.json -------------------------------------------------------------------------------- /create_react_app_1/react-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/package-lock.json -------------------------------------------------------------------------------- /create_react_app_1/react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/package.json -------------------------------------------------------------------------------- /create_react_app_1/react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/public/favicon.ico -------------------------------------------------------------------------------- /create_react_app_1/react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/public/index.html -------------------------------------------------------------------------------- /create_react_app_1/react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/public/manifest.json -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/app/App.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/app/app.css -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/common/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/common/Api.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/common/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/common/components/Button.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/common/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/common/components/Form.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/common/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/common/components/Input.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/common/components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/common/components/Link.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/common/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/common/components/Message.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/features/Links/Links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/features/Links/Links.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/features/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/features/Login/Login.js -------------------------------------------------------------------------------- /create_react_app_1/react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/react-app/src/index.js -------------------------------------------------------------------------------- /create_react_app_1/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/tests.py -------------------------------------------------------------------------------- /create_react_app_1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/urls.py -------------------------------------------------------------------------------- /create_react_app_1/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/create_react_app_1/views.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_webpack_conf_2/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/admin.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/apps.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/migrations/0001_initial.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom_webpack_conf_2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/models.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/serializers.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.babelrc -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/dictionaries/valentino.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/dictionaries/valentino.xml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/misc.xml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/modules.xml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/src.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/src.iml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/vcs.xml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/watcherTasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/watcherTasks.xml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/.idea/workspace.xml -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/README.md -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/app/App.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/app/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/app/reducers/rootReducer.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/app/store/configureStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/app/store/configureStore.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/common/Api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/common/Api.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/common/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/common/components/Button.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/common/components/Form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/common/components/Form.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/common/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/common/components/Input.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/common/components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/common/components/Link.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/common/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/common/components/Message.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseUrl": "http://localhost:8000" 3 | } 4 | -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/cypress/fixtures/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/cypress/fixtures/example.json -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/cypress/integration/features/Login/Login.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/cypress/integration/features/Login/Login.spec.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/cypress/plugins/index.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/cypress/support/commands.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/cypress/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/cypress/support/index.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/features/Links/Links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/features/Links/Links.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/features/Links/modules/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/features/Links/modules/links.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/features/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/features/Login/Login.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/features/Login/modules/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/features/Login/modules/login.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/index.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/package-lock.json -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/package.json -------------------------------------------------------------------------------- /custom_webpack_conf_2/src/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/src/webpack.config.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/static/custom_webpack_conf_2/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/static/custom_webpack_conf_2/css/main.css -------------------------------------------------------------------------------- /custom_webpack_conf_2/static/custom_webpack_conf_2/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/static/custom_webpack_conf_2/js/main.js -------------------------------------------------------------------------------- /custom_webpack_conf_2/templates/custom_webpack_conf_2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/templates/custom_webpack_conf_2/index.html -------------------------------------------------------------------------------- /custom_webpack_conf_2/tests/DummyFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/tests/DummyFactory.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/tests/__init__.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/tests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/tests/api.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/tests/models.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/urls.py -------------------------------------------------------------------------------- /custom_webpack_conf_2/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/custom_webpack_conf_2/views.py -------------------------------------------------------------------------------- /django_rest_react/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rest_react/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_rest_react/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/django_rest_react/settings/base.py -------------------------------------------------------------------------------- /django_rest_react/settings/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/django_rest_react/settings/dev.py -------------------------------------------------------------------------------- /django_rest_react/settings/prod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/django_rest_react/settings/prod.py -------------------------------------------------------------------------------- /django_rest_react/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/django_rest_react/urls.py -------------------------------------------------------------------------------- /django_rest_react/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/django_rest_react/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valentinogagliardi/django-rest-react-pycon/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- 1 | -r ./base.txt 2 | coverage==4.5.3 -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | django-heroku==0.3.1 2 | gunicorn==19.9.0 -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.3 --------------------------------------------------------------------------------