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 project-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 three ways to run Compass locally:
Option 1: Run client, server and database in docker (easiest to get started)
-
Bring up the server, client and database
cd docker/dev docker compose up
-
Wait a bit for the image to build, then visit http://localhost:3000
Option 2: Run client and server locally, and database in Docker
-
Install node dependencies, starting in the
project-compass
directorynpm install # install dependencies
-
Start Postgres inside a Docker container
cd docker/postgres docker compose up -d # start the database cd ../.. # return to the project-compass directory 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
Option 3: Run client, server and database locally
- One time setup:
- Install Postgres from your preferred source (pgAdmin 4, Homebrew, ...)
- Create a username and password on the Postgres server.
- Update the
DATABASE_URL
in server/.env.local to include your actual<username>
and<password>
:DATABASE_URL=postgres://<username>:<password>@localhost:5432/compass
-
Launch your local Postgres instance
-
Install node dependencies, starting in the
project-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
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.
- Winston
- PostgreSQL
- Kysely (type-safe SQL query builder)
- Zapatos (type-safe Postgres helpers, mostly used to generate typings for Kysely)
- AVA (test runner)