Student Insights gives educators an overview of student progress at their school, classroom-level rosters and individual student profiles. It also allows them to capture interventions and notes during weekly or bi-weekly student support meetings focused on the most at-risk students.
Check out the demo site:
- username:
demo@example.com
- password:
demo-password
Our presentation at Code for Boston demo night in May 2016 also has a good product overview.
- User personas: Who we're serving
- Product overview: How we're helping
- Contributing
- How it works
- Development Environment
- Browser/OS Targeting
- Deployment
- Ops
- Other Tools
- More information
There are three main user personas we're serving. Principals, Interventionists and Classroom Teachers. Right now we're focused primarily on serving principals, and the rough progression will likely be to Interventionists next. Early adopter Classroom Teachers are great, but focused on scaling adoption across all classroom teachers isn't a priority yet.
Principals are responsible for a school, from ensuring all students are progressing academically to making hiring and staffing decisions for teachers.
Interventionists are typically folks who provide some kind of specialized service to students, like counseling, behavioral services or specialized reading instruction. They have caseloads of 20-70 students and are often involved in interdisciplinary teams focused on supporting students who are most at-risk.
Classroom Teachers are responsible for teaching all subjects in an elementary level, and at the middle school level typically teach two subjects, with a few periods of each subject.
Principals and intervention specialists can get an overview of all students at school, updated automatically as new data comes in. This includes demographic information (left), academic progress indicators (center), and educational interventions (right).
Educators answer specific questions like "how are 3rd grade students doing on reading assessments?" and "are students on free lunch programs equitably distributed between 5th grade classrooms?" This is useful for understanding progress for groups of students, and also for identifying particular students in need of targeted interventions.
Data can be exported as a CSV for more sophisticated analysis.
Classroom teachers can see rosters of all students in their classroom, calling out high-need students and letting them jump into the student's case history and record of previous assessments and interventions.
Individual student profiles show how students are progressing on core academic skills, as measured summatively by MCAS or on more frequent formative measures like STAR assessments.
Student profiles also contain the full case history of demographic information, attendance and behavioral support.
We're working on some big improvements to the student profile page right now, check out #5 for more background.
It's one thing to have data, but acting on it to improve student outcomes is what really matters. Schools with regular student support meetings for at-risk students can track interventions like additional tutoring hours, attendance contracts or social skills groups. This is a building block to close the loop and monitor how effectively these interventions are serving students.
It also allows capturing meeting notes as part of the student's record, which is particularly important on interdisciplinary teams.
We'd love your help! Take a look at CONTRIBUTING.md for more information on ways educators, developers and others can get involved and contribute directly to the project. You can also learn how to join our online chat channel and submit pull requests and join us in person at our weekly hack night with Code for America, in Kendall Square, Cambridge.
The project is a Rails app with a Postgres database. There are background tasks that replicate data from the Aspen SIS system and STAR assessment system into the Postgres database. This enables rapid iteration and experimentation on new product features with minimal risk to these existing production systems. The Postgres database is the system of record for unique data captured by the Student Insights product (eg., notes from clinical meetings and information about targeted interventions that students are receiving). Authentication is handled by the district's LDAP service.
This project includes an admin dashboard built with thoughtbot/administrate.
The admin dashboard has one function: Allow admins (principals, assistant principals, district admins) to set user roles and permissions for other staff, in particular staff who are not classroom-based teachers.
The admin dashboard is available at /admin
for educators whose admin
attribute is true
.
This is a Ruby on Rails app that uses a PostgreSQL database, and relies on React for much of the UI code.
Choose your favorite local development approach:
bundle exec rake db:create db:migrate db:seed
This will create demo students with fake student information. The demo educator username is demo@example.com
and the demo password is demo-password
.
Once you've created the data, start a local server by running rails s
from the root of your project. When the local server is up and running, visit http://localhost:3000/ and log in with your demo login information. You should see the roster view for your data.
This app uses Rspec. Run the test suite:
rspec
It uses Jasmine for JavaScript tests, run through the Teaspoon gem. You can run them in the browser at http://localhost:3000/teaspoon/default
.
You can also run them from the command line:
teaspoon
eslint is setup, but not in the build yet since it would take some cleanup. See studentinsights#637 for more information, and try this out with either:
docker-compose build tools
docker-compose run tools
or
cd scripts/tools
npm install
npm run lint-quiet
This project is a Rails app and has a typical Rails project structure. If you'd like to get up to speed on Rails, we recommend checking out their great documentation.
It also uses React for much the user interface code. If you'd like to get up to speed on React, we recommend their great documentation, and the Tutorial and Thinking in React pages in particular.
There are also a few places where we use Flux patterns.
If you use Sublime Text Editor, we include the studentinsights.sublime-project
file to standardize minor things like tabs vs. spaces, indentation, and generally make it easier to work with our folder structure. Go to Project --> Open Project
and select that file to load it. Sublime remembers which project you were last in, so you only need to do this once. (Here's some background info on how projects work in Sublime).
Users use IE11, so if you're trying to manually test locally or the production site, you should too! If you have a Mac or Linux box, you can use free VMs designed for just this purpose and run them on VirtualBox: https://developer.microsoft.com/en-us/microsoft-edge/tools/vms/.
Useful tidbits:
- These virtual machines expire after 90 days, so take a snapshot right away and rollback when it expires
- Enable "Shared Clipboard" in the Devices menu
- Disable the "Host Capture" key
- Point to http://10.0.2.2:3000/ to access the host instance of Student Insights
Category | Target | Comment |
---|---|---|
Browser | IE 11 | "Should be all IE 11 by now." – John Breslin, Technology Department, Somerville Public Schools |
OS | Windows 7 and 8.1 | "Maybe some Win10 next year." – John Breslin, Technology Department, Somerville Public Schools |
See our guide:
Merging and deploying new code to Heroku.
Insights uses a separate-instance strategy for new districts (one database and one Heroku app per district).
Set up a new district:
$ scripts/deploy/new_district.sh "My New District Name"
This sets up a new Heroku app instance with the Student Insights code and copies over some basic configuration around the district name. It gives you the option to fill the instance with fake data if you like. It doesn't yet include tooling for connecting with a Student Information System or other district-level data sources.
District | Data Source | Data Import Notes |
---|---|---|
Somerville | Aspen SIS | Somerville IT runs the SQL scripts in the x2_export folder every night to create CSVs and dump them to an SFTP site. We import the CSVs to Insights nightly. |
Somerville | STAR (assessment vendor) | STAR IT team runs a job when Somerville STAR assessment results come in that dumps fresh CSV data to an SFTP site. We import the CSVs to Insights nightly. |
Somerville | EasyIEP | EasyIEP runs "change export" of IEP PDFs that have changed and sends them to an SFTP nightly. Somerville IT runs a job to copy those files into Aspen and another job to copy those files to an Insights SFTP site. We import the PDFs to Insights nightly. |
Fall River | Aspen (Hosted) | Fall River IT is working on their own version of the SQL scripts in the x2_export folder; they can't use SQL scripts directly because they have a different version of Aspen X2. |
District | Feature Area | Feature Notes |
---|---|---|
Somerville | School Overview Page | Somerville High School Housemasters are requesting a feature that will let them sort students by House. (More info on houses here.) |
If you're working with a real school district, you'll need flat files of the data you want to import.
Run an import task:
thor import:start
So far, Student Insights can import CSV and JSON and can fetch data from AWS and SFTP. To import a new flat file type, write a new data transformer: app/importers/data_transformers
. To import from a new storage location, write a new client: app/importers/clients
.
The project is configured to use LDAP as its authentication strategy in production. To use database authentication (in a production demo site, for example) set the SHOULD_USE_LDAP
environment variable. Authentication strategies are defined in educator.rb
.
Quotaguard Static, a Heroku add-on, provides the static IP addresses needed to connect with Somerville's LDAP server behind a firewall. This requires additional configuration to prevent Quotaguard Static from interfering with the connection between application and database.
One way to accomplish this is to set a QUOTAGUARDSTATIC_MASK
environment variable that routes only outbound traffic to certain IP subnets using the static IPs. Read Quotaguard Static's documentation for more information.
Here are some notes on maintaining, troubleshooting and performance.
Look in the Heroku metrics panel. If you need to understand further, use Scout.
You can use heroku-pg-extras to get helpful diagnostic information about slow queries, index usage, and table scans.
We use Mixpanel to track user interactions on the client side. It gives us nice graphs so we can see who's using the app and how.
- Drop into the #somerville-schools chat on Code for Boston Slack
- Connect with Alex or Kevin on Twitter or with @eli-rose on Code for Boston Slack
- More docs in the
docs
folder!