CINS465 - Web Development Fundamentals


Link to resource on GitHub

Assignment 5 Client Side Programming

Leverage front end JS to do something interesting

In this assignment your website needs to do the following:

  • Do something to demonstrate the usefulness of Javascript
  • Ideally you should live update data from your backend without the client side having to refresh the page.
  • Make it clear to me what your Javascript does and why it's useful.
  • Be creative
  • Be submitted to GitHub correctly
  • You should be able to view the site on your local machine at http://localhost/. For more information on setting up routes in Django, please see the documentation

Submitting Assignment 5

The code should be submitted to your CINS465 on a branch named assignment5, make sure your case is identical for your branch or I may not find/grade your submission. To do this you can do the following in your repo directory, it assumes you want to add all the code in the directory:

git checkout -b assignment5 #create branch and switch to it git add -A #add all git commit -m "Assignment 5 Submission" #Commit changes to branch git push --set-upstream origin assignment5 #Push code up to assignment5 branch on remote

You should have your code setup such that when cloned in your folder it can be run directly via python manage runserver. If you chose to you can containerize your code via docker. If you choose to do this you should have either a docker-compose.yml in your root directory for me to launch your project or a Dockerfile in your root directory I can build a container from.

Loading...