Coder Social home page Coder Social logo

anantakash73 / student_explorer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tl-its-umich-edu/student_explorer

0.0 1.0 0.0 29.52 MB

Tool used by Academic advisors to access student weekly performance

License: Apache License 2.0

Python 12.90% HTML 6.36% JavaScript 36.20% CSS 14.81% Shell 0.21% Makefile 0.12% Batchfile 0.02% Dockerfile 0.21% TSQL 29.17%

student_explorer's Introduction

Student Explorer

Overview

Student Explorer is an early warning system that helps academic advisors at the University of Michigan-Ann Arbor identify at-risk students based on current term Learning Management System data. It started in 2011 as a research project at the University of Michigan USE Lab; LSA Technology Services, Academic Innovation, and ITS Teaching & Learning have contributed to the design, development, and management of the tool. Student Explorer is in use as an enterprise production application at U-M and continues to be developed by ITS Teaching & Learning. The code is open source and is licensed under Apache 2.0. The application primarily relies on Django for the backend and Bootstrap and jQuery for the frontend.

To contact the Student Explorer team, please email [email protected].

Data Sources

Student Explorer uses two separate data sources in production:

  1. A MySQL database, which contains administrative and management tables typical for Django databases, including django_admin_log (log of changes made in Django admin), tracking_event (log of events tracked in the application such as page views, logins, and redirects), and auth_user (user accounts). This database also maintains the cohort relationships and is being used to cache page templates to improve performance.

  2. U-M Data Warehouse Oracle database edwprod.world, which contains the data served up in the application, including basic student and course data, grades, assignments, etc. For full information on the tables in the U-M Data Warehouse that are used by Student Explorer, see Teaching & Learning Student Explorer dataset information.

Note that when you follow the instructions below to start up a local version of the application, both data sources will be created in the same MySQL database and populated with fake data. This data will help demonstrate the tool's functionality.

Development Environment

Application Setup

To follow these instructions, you will need to have Docker installed. For those new to the technology, the documentation includes a detailed introduction.

  1. Clone and navigate into the repository.

    git clone https://github.com/tl-its-umich-edu/student_explorer.git # HTTPS
    git clone [email protected]:tl-its-umich-edu/student_explorer.git # SSH
    
    cd student_explorer
    
  2. Create a .env using .env.sample as a template.

    mv .env.sample .env
    
  3. Build and bring up the development server using docker-compose.

    docker-compose build
    docker-compose up
    

    Use ^C and docker-compose down to bring the application down.

  4. Browse the application on localhost.

    • Navigate to http://localhost:2082/.
    • Log in as admin or an advisor (e.g. burl). All passwords are the same as the user's username.

    Not all pages will have complete data. The pages for Grace Devilbiss provide a comprehensive example of how the tool presents and visualizes student data.

Running the Tests

When working on the application, you should periodically run and update the unit tests. To run them, use the following command while the development server is up.

docker exec -it student_explorer /bin/bash -c "echo yes | python manage.py test"

You can also enter the running Docker container โ€” and then run your own commands โ€” by using the first part of the above command, docker exec -it student_explorer /bin/bash.

Django Debug Toolbar

The application is currently configured to use the Django Debug Toolbar to assist with development. The toolbar will only appear if DJANGO_DEBUG is set to true in the .env and the user is logged in as a superuser.

Note on Settings

By default, Django's manage.py process looks for the student_explorer.local.settings_override module. This file is created automatically when using docker-compose based on instructions in the Dockerfile. In addition, wsgi.py (which is used by start.sh) looks by default for the student_explorer.settings module. This file is versioned as part of the repository. This behavior can be changed for both manage.py and wsgi.py by setting the DJANGO_SETTINGS_MODULE environment variable.

student_explorer's People

Contributors

kris-steinhoff avatar kushankr avatar weikaizh avatar lsloan avatar jonespm avatar mtwojan avatar gsilver avatar zqian avatar axapotnis avatar ssciolla avatar arwhyte avatar bethkirschner avatar danieldugan avatar mfldavidson avatar dlhaines avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.