Note: CMPSC 156 Student teams should not change the prod/qa links below to match their team's links; you should maintain the README.md file so that it can be merged into the https://github.com/ucsb-cs156/proj-frontiers/ repo at the end of the quarter.
- Java: 21
- node: 20.17.0 See docs/versions.md for more information on upgrading versions.
This web application supports courses that use Github organizations as a basis for instruction in coding and software engineering.
Three levels of functionalilty are planned:
Tier 1: Basic features to automate the process of generating invitations to a Github Organization for all students on a course roster, and linking those students Github and student identities (i.e. linking their Github login to their official school email or student number).
Tier 2: Features to support common course management tasks such as creating assignment repos for individuals or groups, managing teams on Github, creating team level repos.
Tier 3: Features to support the NSF Frontiers project, a project that aims to provide instructors in Software Engineering courses with tools to help students learn how to evaluate commits, issues, pull requests and code reviews using rubrics based on criteria established by an expert panel of representatives from both industry and academia.
As of April 2025, we have only a minimum viable product for Tier 1 functionality. The goal is to complete Tier 1 as soon as possible, and and then start building Tier 2 and Tier 3 features.
Before running the application for the first time, you need to configure several environment variables. Start by copying the sample environment file:
cp .env.SAMPLE .env
Then fill in the following values in your .env file:
| Variable | Description | Setup Guide |
|---|---|---|
GOOGLE_CLIENT_ID |
Google OAuth client ID for authentication | docs/oauth.md |
GOOGLE_CLIENT_SECRET |
Google OAuth client secret | docs/oauth.md |
GITHUB_CLIENT_ID |
GitHub App client ID for GitHub integration | docs/github-app-setup-localhost.md |
GITHUB_CLIENT_SECRET |
GitHub App client secret | docs/github-app-setup-localhost.md |
app_private_key |
GitHub App private key (generated via ./keyconvert-localhost.sh) |
docs/github-app-setup-localhost.md |
WEBHOOK_SECRET |
Secret for validating GitHub webhook payloads (10+ characters) | docs/github-app-setup-localhost.md |
ADMIN_EMAILS |
Comma-separated list of admin email addresses | docs/oauth.md |
-
Google OAuth (required for login): Follow the instructions in
docs/oauth.mdto create a Google OAuth client and obtain yourGOOGLE_CLIENT_IDandGOOGLE_CLIENT_SECRET. -
GitHub App (required for GitHub features): Follow
docs/github-app-setup-localhost.mdto create a GitHub App and obtain yourGITHUB_CLIENT_ID,GITHUB_CLIENT_SECRET, andapp_private_key. -
Webhook Secret (required): Set
WEBHOOK_SECRETto any string of 10+ characters in your.envfile. For localhost, a placeholder likelocalhost_dev_secret_123is fine. -
Admin Emails: Set
ADMIN_EMAILSto a comma-separated list (no spaces) of email addresses that should have admin access.
Without the Google OAuth setup, you will see an error like this when trying to log in:
- On localhost:
docs/github-app-setup-localhost.md - On dokku:
docs/github-app-setup-dokku.md
- Open two separate terminal windows
- In the first window, start up the backend with:
mvn spring-boot:run - In the second window:
cd frontend npm ci # only on first run npm start
Then, the app should be available on http://localhost:8080
If it doesn't work at first, e.g. you have a blank page on http://localhost:8080, give it a minute and a few page refreshes. Sometimes it takes a moment for everything to settle in.
If you see the following on localhost, make sure that you also have the frontend code running in a separate window.
Failed to connect to the frontend server... On Dokku, be sure that PRODUCTION is defined. On localhost, open a second terminal window, cd into frontend and type: npm install; npm start";
See: /docs/dokku.md
To access the swagger API endpoints, use:
Or add /swagger-ui/index.html to the URL of your dokku deployment.
- cd into frontend
- use: npm run storybook
- This should put the storybook on http://localhost:6006
- Additional stories are added under frontend/src/stories
For documentation on React Storybook, see:
- https://ucsb-cs156.github.io/topics/storybook/
- https://ucsb-cs156.github.io/topics/chromatic/
- https://storybook.js.org/
On localhost:
- The SQL database is an H2 database and the data is stored in a file under
target - Each time you do
mvn cleanthe database is completely rebuilt from scratch - You can access the database console via a special route, http://localhost:8080/h2-console
- For more info, see docs/h2-database.md
On Dokku, follow instructions for Dokku databases:
- To run all unit tests, use:
mvn test - To run only the tests from
FooTests.javause:mvn test -Dtest=FooTests
Unit tests are any methods labelled with the @Test annotation that are under the /src/test/java hierarchy, and have file names that end in Test or Tests
To run only the integration tests, use:
export WEBHOOK_SECRET=$(openssl rand -base64 32)
INTEGRATION=true mvn test-compile failsafe:integration-test
To run only the integration tests and see the tests run as you run them, use:
export WEBHOOK_SECRET=$(openssl rand -base64 32)
INTEGRATION=true HEADLESS=false mvn test-compile failsafe:integration-test
To run a particular integration test (e.g. only HomePageWebIT.java) use -Dit.test=ClassName, for example:
export WEBHOOK_SECRET=$(openssl rand -base64 32)
INTEGRATION=true mvn test-compile failsafe:integration-test -Dit.test=HomePageWebIT
or to see it run live:
export WEBHOOK_SECRET=$(openssl rand -base64 32)
INTEGRATION=true HEADLESS=false mvn test-compile failsafe:integration-test -Dit.test=HomePageWebIT
Note that the export WEBHOOK_SECRET=$(openssl rand -base64 32) command only needs to be run
once per shell; it does not need to be run each time.
Integration tests are any methods labelled with @Test annotation, that are under the /src/test/java hierarchy, and have names starting with IT (specifically capital I, capital T).
By convention, we are putting Integration tests (the ones that run with Playwright) under the package src/test/java/edu/ucsb/cs156/frontiers/web.
Unless you want a particular integration test to also be run when you type mvn test, do not use the suffixes Test or Tests for the filename.
Note that while mvn test is typically sufficient to run tests, we have found that if you haven't compiled the test code yet, running mvn failsafe:integration-test may not actually run any of the tests.
This repo has support for partial pitest runs
For example, to run pitest on just one class, use:
mvn pitest:mutationCoverage -DtargetClasses=edu.ucsb.cs156.frontiers.controllers.CoursesController
To run pitest on just one package, use:
mvn pitest:mutationCoverage -DtargetClasses=edu.ucsb.cs156.frontiers.controllers.\*
To run full mutation test coverage, as usual, use:
mvn pitest:mutationCoverage
To switch your local Node version to the one specified in frontend/package.json, use:
cd frontend
source ./nvm-pj.shYou must source this script (instead of running it directly) so it can update your current shell's active Node version.
