This repository contains the ASPC Student Platform, a web application for Pomona College students. The platform provides authentication through Pomona's ITS system using SAML, and serves as a central hub for student resources.
Haram Yoon, Cole Uyematsu, Vadym Musiienko, Kartika Santoso, Abrar Yaser
The application is currently deployed as follows:
Backend: AWS Lightsail at api.pomonastudents.org Frontend: Vercel at pomonastudents.org
This repository includes several documentation files to help you understand and work with the application:
- Platform Overview - Information about the student platform
- Architecture - High-level design of the application
- Authentication - Details on the SAML authentication system
- Features - Explanation of application features and functionalities
- Detailed can be found at Repository Structure
project/
├── backend/ # Node.js Express backend
│ ├── src/
│ │ ├── config/ # Configuration files including SAML and server config
│ │ ├── models/ # Database models
│ │ ├── routes/ # API route handlers
│ │ ├── services/ # Business logic
│ │ └── server.ts # Main server file
│ ├── certs/ # SSL certificates
│ └── package.json
├── frontend/ # Next.js React frontend
│ ├── certs/ # SSL certificates
│ └── package.json
├── docker-compose.yml # Docker configuration
└── docs/ # Documentation files
See Getting Started for instructions on setting up the application locally or with Docker.
When contributing to this project, please follow the existing code structure and naming conventions. Make sure to test your changes thoroughly before submitting a pull request.
This guide provides instructions for setting up the ASPC Student Platform both locally and with Docker. This will hep you setup the backend, frontend, and database components of the application. More details about the application can be found in the folder docs
.
- Node.js (v16 or higher)
- npm or yarn
- MongoDB
- OpenSSL for certificate generation
SSL certificates are required for both frontend and backend due to SAML authentication requirements.
mkdir backend/certs
cd backend/certs
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout localhost.key -out localhost.crt
# When prompted:
# Common Name: localhost
# Other fields can be left blank
mkdir frontend/certs
cp backend/certs/localhost.* frontend/certs/
- Backend Setup
cd backend
npm install
npm run dev
This will start the backend server at https://localhost:5000
- Frontend Setup
cd frontend
npm install
# Run Next.js app on HTTP
npm run dev
# In another terminal, run the SSL proxy
npm install -g local-ssl-proxy
local-ssl-proxy --source 3001 --target 3000
This will make the frontend available at https://localhost:3001
Create a .env
file in both the frontend and backend directories with the following variables:
Backend .env
NODE_ENV=development
SESSION_SECRET=your_secret_key_here
ENTITY_ID=<backend_server_url>
IDP_METADATA_URL=<url_from_ITS>
ENGAGE_API_URL=<engage_url>
ENGAGE_API_KEY=<engage key>
Note: last four are only needed for events pulling or authentication, and application can still be run without them.
Frontend .env
BACKEND_LINK=https://localhost:5000
- Docker
- Docker Compose
- Build the images:
docker-compose build
- Start the containers:
docker-compose up
This will start the application with the following services:
- MongoDB on port 27017
- Backend on port 5000
- Frontend on port 3001
The Docker setup includes:
- Volume for MongoDB persistence
- Volume for certificates
- Environment variable configuration
The application is currently deployed as follows:
- Backend: AWS Lightsail at api.pomonastudents.org
- Frontend: Vercel at pomonastudents.org
For production deployment:
- Update environment variables for production
- Use proper SSL certificates (not self-signed)
- Configure SAML settings for production environment
-
SSL Certificate Problems
- Ensure certificates are properly generated
- Check that certificate paths are correct in config files
- Verify Common Name is set to 'localhost' for local development
-
SAML Authentication Issues
- Verify IDP metadata is correctly downloaded and saved
- Check entity ID and ACS URL configuration
- Ensure HTTPS is working correctly on both frontend and backend
-
Docker Issues
- Check if ports are already in use
- Verify environment variables in docker-compose.yml
- Ensure MongoDB volume has correct permissions
-
Build the container:
cd backend docker build -t aspc-backend .
-
Run your new container, you can change the port from 5001 to any port available. This will be the port your docker container connects to. Make sure to insert the correct environment variables.
docker run -p 5001:5000 \ -e MONGODB_URI="mongodb+srv://{user}:{password}@aspc.qm4l8.mongodb.net/school-platform?retryWrites=true&w=majority&appName=ASPC" \ -e NEXT_PUBLIC_TINYMCE_API_KEY="{key}" \ aspc-backend
-
Clear all previous builders:
docker buildx rm mybuilder || true
-
Create a new builder, you can name it anything:
docker buildx create --use --name mybuilder
-
Build the container and push it to dockerhub:
docker buildx build \ --platform linux/amd64 \ -t aspcsoftware/aspc-backend:latest \ --push \ .
-
Check architecture (has to be linux amd64 for Amazon Lightsail):
docker manifest inspect aspcsoftware/aspc-backend:latest
-
Deploy on lightsail using this image reference:
docker.io/aspcsoftware/aspc-backend:latest