Merged
Conversation
* Django Channels + React along with API translation * Allow modifying demos * Bug fix: Modify demos * Bug fix: Save number of components in a demo * Render demo component * Allow communication between demo and lib * Removed unnecessary logging * Removed unnecassary print statements * Support to add root user * Removed unwanted files * Tests for demo and components * Tests for permalink * Fix PEP8 errors * Formatted using prettier * Add socialapp with rootsettings * Remoeved print statements * Modified update instructions * Configured travis * Fixed import for python 3 * Fixed python3 errors * Linked to docs * Update README.md * Modified gitignore * Modified Readme * Added csrf token * Modified travis * Replace camelCase with underscores * Replace Json/HttpResponse with DRF Response and status code * Modified readme * camelCase socket events * Don't delete modify user on login * Uses permalink serializer * Use component serializers * Always modify rootsettings * Drop field 'id' from components * Send Json not found instead of empty dict * Import only required classes * Added new line
deshraj
requested changes
Jul 6, 2017
webpack.local.config.js
Outdated
| } | ||
| }; | ||
|
|
||
| module.exports = config No newline at end of file |
api/admin.py
Outdated
| admin.site.register(InputComponent) | ||
| admin.site.register(OutputComponent) | ||
| admin.site.register(RootSettings) | ||
| admin.site.register(Permalink) No newline at end of file |
django_server/templates/base.html
Outdated
| <body> | ||
| {% block main %}{% endblock %} | ||
| </body> | ||
| </html> No newline at end of file |
webpack.base.config.js
Outdated
| modulesDirectories: ['node_modules', 'bower_components'], | ||
| extensions: ['', '.js', '.jsx'] | ||
| }, | ||
| } No newline at end of file |
deshraj
approved these changes
Jul 6, 2017
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Translates the entire backend from node to Django using django, django rest framework and channels