Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# A fully working dev example | |
# This assumes that: | |
# A (in my case Vue) JS dev server is listening on port :8080 and is in charge of all look and feel loveliness | |
# it also assumes that a Django dev server is running on port :8000 and has the sole purpose of being an API server | |
# The websockets stanza can be omitted if it isn't applicable | |
# Any documents in /static will be served...well statically | |
# `manage.py collectstatic` *should* copy the Django static files here so long as: |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder