A highly scalable web application that assists the process of coordinating and evaluating peer reviews of student work.
Before contributing, see our Contribution Guidelines.
There are multiple conifigurations for running the application in different environments to make the application machine and OS agnostic. The possible configurations are:
- Production: For when you want the app out for full use
- Local Development: The production app but running only on a localhost network for testing
- Run Each Microservice Individually: Run each service independently of eachother for testing on specific microservices
The minimum required software need to run the application is:
To run the application on a Windows operating system, you will need:
After downloading these to your computer, run the application and any of the following commands through the Ubuntu app. Ensure you are using WSL2! Docker and Docker Compose will not run properly using the originial WSL.
All environments will make use of a .env file for automation of deployment. At the root of the directory, create a .env
file using .env.example
as the template. Do not change the MONGO_DATABASE
, MONGO_INITDB_DATABASE
, MONGO_PORT
, MONGO2_PORT
, MONGO3_PORT
, MONGO4_PORT
, or MONGO5_PORT
values. Make MONGO_INITDB_ROOT_USERNAME
, MONGO_INITDB_ROOT_PASSWORD
, MONGO_USERNAME
, and MONGO_PASSWORD
whatever you would like, but keep them consistent across running environments.
All environments will be using MongoDB deployed with Docker and Docker compose so that database infrastructure is not different . You will not need to install MongoDB, but it may be a good idea to install MongoDB Compass so you can more easily monitor the databases. Mongosh is another alternative program to monitor the database if you're more comfortable on the command line
All environments will need Google Cloud Console Credentials.
-
Head to Google Cloud Console Credentials to create an
OAuth client ID
. -
Set the
Application type
asWeb application
.Application name
can be anything. -
Add the full domain URL used in
.env
(with protocol and port if used) toAuthorized JavaScript origins
andAuthorized redirect URIs
. Save the changes. For example, if I am running the app at https://example.com on port 443, I would put https://example.com and https://example.com:443 in the two sections. Keep in mind that if you are going to be running the application in a production environment, you will need to deploy the application using an https connnection due to the new Google authentication method requiring any applications that are not running on a local host to use https. -
Copy and paste the
Client ID
andClient secret
that pop up after saving the application to your.env
file asCLIENT_ID
andCLIENT_SECRET
respectively.
Step 1: Clone the repository.
Step 2: Go the the docker-compose.yml
file found in root. At the bottom of the file under the nginx container, make the docker host port equal to whatever port you have listed in the URL environment variable. So if I was running the app with the URL https://example.com:443, the configuration at the bottom of the file would look like this:
Step 3: In the .env
file, make the JWK_ACCESS_URL equal to whatever your URL variable is followed by /jwt/ibm/api/cpr_access/jwk. So if the URL is https://example.com:443, JWK_ACCESS_URL should be https://example.com:443/jwt/ibm/api/cpr_access/jwk
Step 4: In the .env
file, make the JWK_REFRESH_URL equal to whatever your URL variable is followed by /jwt/ibm/api/cpr_refresh/jwk. So if the URL is https://example.com:443, JWK_ACCESS_URL should be https://example.com:443/jwt/ibm/api/cpr_refresh/jwk
Step 5: In scripts
directory, execute build-app.sh
to start the application.
Step 6: In scripts
directory, execute mongo-init.sh
to initialize user database login credentials. This is only necessary on the very first build of the application.
The web application should be running on the specified domain in your .env
file.
Step 7: To add users with elevated privileges (a.k.a professors), include the user's email on separate lines in professor-list.txt
.
Step 1: Clone the repository.
Step 2: Go the the docker-compose-local.yml
file found in root. At the bottom of the file under the nginx container, make the docker host port equal to whatever port you have listed in the URL environment variable. So if I was running the app with the URL http://localhost.com:443, the configuration at the bottom of the file would look like this:
Step 3: In the .env
file, make the JWK_ACCESS_URL equal to http://172.17.0.1:<whatever port you're running on>/jwt/ibm/api/cpr_access/jwk
. This URL is specifically needed so that the docker container running the microservices knows to access the docker host's localhost IP address.
Step 4: In the .env
file, make the JWK_REFRESH_URL equal to http://172.17.0.1:<whatever port you're running on>/jwt/ibm/api/cpr_refresh/jwk
. This URL is specifically needed so that the docker container running the microservices knows to access the docker host's localhost IP address.
Step 5: In order to properly run on localhost using Google's new login service, one line needs to be added in the frontend's index.html
file. Simply uncomment the referrer
meta link found at frontend/src/main/frontend/public/index.html
. MAKE SURE TO COMMENT IT OUT AGAIN BEFORE DOING ANY PULL REQUESTS
Step 5: In scripts
directory, execute build-app-local.sh
to start the application.
Step 6: In scripts
directory, execute mongo-init.sh
to initialize user database login credentials. This is only necessary on the very first build of the application.
The web application should be running on the specified domain in your .env
file.
Step 7: To add users with elevated privileges (a.k.a professors), include the user's email on separate lines in professor-list.txt
.
For local development environment, a Docker setup is not necessary. Make sure that the following software and dependencies are installed:
- Maven >= 3.8.4
- JDK >= 17
- MongoDB >= 5.0
- MongoDB Compass is optional but recommended for a MongoDB GUI that also comes with a terminal for shell commands
Step 1: On Windows, hit Windows + R
, enter sysdm.cpl
and navigate to Advanced -> Environment Variables...
and add the following variables:
Variable | Value |
---|---|
MONGO_HOSTNAME |
localhost |
MONGO_PORT |
27017 |
MONGO_DATABASE |
cpr |
MONGO_USERNAME |
Your choice |
MONGO_PASSWORD |
Your choice |
On Linux-based operating systems, you may achieve the similar result by executing EXPORT <NAME>=<VALUE>
.
Step 2: Using the MongoDB shell (either using MongoDB shell from terminal or the built-in one in MongoDB Compass) to create authentication for the database by running the following command:
db.createUser({user: "<your username>", pwd: "<your password>", roles: [{role: "readWrite", db: "cpr"}]});
Step 3: Run mvn liberty:dev
to start the project in developer mode. The web app should be running on http://localhost:xxxxx - the port depends on which microservice you are running as following:
Microservice | Port |
---|---|
frontend |
13125 |
login |
13126 |
course-manager |
13127 |
course-viewer |
13128 |
peer-review-teams |
13129 |
professor-assignment |
13130 |
student-assignment |
13131 |
student-peer-review-assignment |
13132 |
Contributors are more than welcome to improve the project by creating a new issue to report bugs, suggest new features, or make changes to the source code by making a pull request. To have your work merged in, please make sure the following is done:
- If you are not a contributor, fork the repository and create your branch from master. Otherwise, create a new development branch with a desired name.
- Push your commits to the aforementioned fork/branch.
- Make sure to keep the changes within the scope of the pull request you are about to make, as it is highly disencouraged to commit irrelevant changes that does not have anything to do with the pull request.
- Create a pull request.
- If you’ve fixed a bug or added something new, add a comprehensive list of changes. Ensure that your code is tested, functional, and is linted.
- When merging into master, it is highly recommended that you choose "squash and merge" instead of the default option "create a merge commit" to prevent flooding the master branch's commit history.