Compass is a tool to help educators create and manage Individualized Education Programs (IEPs) for better student outcome.
Useful resources:
-
Install Docker Desktop
-
Clone the GitHub repo:
- Windows users (do this first before checkout) : make sure to run git autocrlf setting is set to false so that carriage return characters are not inserted into files (which breaks them when they run inside the Linux container). To do so, open a Powershell and run:
git config --global core.autocrlf false
cd <parent folder of compass> git clone https://github.com/sfbrigade/compass.git cd compass
- Windows users (do this first before checkout) : make sure to run git autocrlf setting is set to false so that carriage return characters are not inserted into files (which breaks them when they run inside the Linux container). To do so, open a Powershell and run:
-
Create the local server env file:
cp .env.example .env.local
There are two ways to run Compass locally:
Option 1: Run server locally, and supporting services in Docker
-
Install node dependencies, starting in the
compass
directorynpm install # install dependencies
-
Start services in Docker & reset the database
docker compose -f supporting_services/docker-compose.yml up -d # start the services in the background npm run db:reset # reset and migrate the database
-
Start the server
npm run dev # start the server in development mode
Server URL: http://localhost:3000
NOTE: If you get into a login loop, double check that the Docker services are running
-
Seed database (Optional)
This runs the seed script with test data. You will first need to log in to Compass with Google OAuth to create the first user (see Authentication section below). Then, run the following:
npm run db:seed # Seed the database with test data
Option 2: Run both server and supporting services locally
- One time setup:
- Install and configure Postgres:
- Install MinIO, an open source S3-compatible storage server:
-
Install dependencies, starting in the
compass
directorynpm install # install dependencies
-
Reset the database and bring up the server
npm run db:reset # reset and migrate the database npm run dev # start the server in development mode
Server URL: http://localhost:3000
Your .env.local
file will need to be updated with valid values for GOOGLE_CLIENT_ID
and GOOGLE_CLIENT_SECRET
. This will allow you to log in with Google OAuth into Compass.
To update GOOGLE_CLIENT_ID:
- Navigate to Google Cloud
- Create a "Client ID for Web application"
- Populate the fields as below (note the name and authorized redirect URIs fields)
- Copy the client ID field on the upper right of the modal (not shown in screenshot), after creation
To update GOOGLE_CLIENT_SECRET:
- Copy the google client secret after creation of the client id
Option 1: Use Mailcatcher in Docker
If you're following Option 1 above to run supporting services in Docker, the .env.example
file is already configured to send email to the Mailcatcher server running on port 1025 for SMTP. The Mailcatcher server will "catch" all email sent and save it in memory to be viewed in its web-based interface running on port 1080. Open it in your web browser at: http://localhost:1080
Option 2: Configure a live mail server
If you're not running supporting services in Docker, or wish to test email sending to some test accounts (please take care not to send test emails to real people!), you can configure the following variables in your .env
file:
- For an SMTP server
EMAIL_SERVICE=smtp EMAIL_AUTH_USER=[username for your SMTP server] EMAIL_AUTH_PASS=[password for your SMTP server] [email protected] EMAIL_HOST=[host name for your SMTP server] EMAIL_PORT=[port for your SMTP server- typically 587 or 465 for secure connections]
- For a Gmail account
EMAIL_SERVICE=gmail EMAIL_AUTH_USER=[your Gmail address] EMAIL_AUTH_PASS=[your Gmail password] EMAIL_FROM=[your Gmail address] EMAIL_HOST= EMAIL_PORT=
The database container does not need to be started to run tests, but Docker Desktop must be running in the background.
Run all tests with npm run test
. An individual test file can be run with npm run test <path/to/file>
(e.x. npm run test src/routes/students.test.ts
).
To run tests in watch mode, use npm run test:watch
. This will run tests whenever a file is changed, but will not take database schema changes into account.
Until Compass is deployed, the initial migration file at src/api/db/migrations/1_initial-migrations.sql
should be edited. Once Compass is deployed, new migrations can be created in the same directory by adding 1
to the number of the last migration file.
Run npm run db:migrate
to migrate the database. However, until Compass is deployed, you'll more likely want to run npm run db:reset
to reset the database since we'll be making changes to the initial migration file.
Make sure that Docker is running in the background
Make sure that Docker is running in the background
Log in with your Google credentials first, and rerun to generate the first user.
Ensure you have port forwarding for port 5432 from Docker to your local machine set up, and that you are not already running Postgres in the background for another servie.
Fill out the Google Client ID and Google Client Secret in .env.local
- Winston
- PostgreSQL
- Kysely (type-safe SQL query builder)
- Zapatos (type-safe Postgres helpers, mostly used to generate typings for Kysely)
- AVA (test runner)