Skip to content

🩸 Leukemia & Lymphoma Society of Canada First Connection Peer matching and scheduling platform

Notifications You must be signed in to change notification settings

uwblueprint/llsc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Leukemia & Lymphoma Society of Canada (LLSC)

Table of Contents

Repo Structure

llsc/
β”œβ”€β”€ backend/
β”‚   β”œβ”€β”€ app/
β”‚   β”‚   β”œβ”€β”€ middlewares/       # Middleware components (e.g., auth middleware)
β”‚   β”‚   β”œβ”€β”€ migrations/        # Database migrations
β”‚   β”‚   β”œβ”€β”€ models/            # SQLAlchemy database models
β”‚   β”‚   β”‚   └── __init__.py    # App initialization, contains all models
β”‚   β”‚   β”œβ”€β”€ resources/         # Data Transfer Objects (DTOs)
β”‚   β”‚   β”œβ”€β”€ routes/            # Route components
β”‚   β”‚   β”œβ”€β”€ schemas/           # Pydantic schemas
β”‚   β”‚   β”œβ”€β”€ services/          # Services handling business logic
β”‚   β”‚   β”‚   β”œβ”€β”€ implementations/ # Concrete implementations of service interfaces
β”‚   β”‚   β”‚   └── interfaces/    # Service interfaces
β”‚   β”‚   └── utilities/         # Shared utility modules
β”œβ”€β”€ frontend/
β”‚   β”œβ”€β”€ public/                # Static files
β”‚   β”œβ”€β”€ src/
β”‚   β”‚   β”œβ”€β”€ APIClients/         # API clients
β”‚   β”‚   β”œβ”€β”€ components/         # Reusable UI components
β”‚   β”‚   β”œβ”€β”€ constants/          # Constants
β”‚   β”‚   β”œβ”€β”€ contexts/           # Context providers
β”‚   β”‚   β”œβ”€β”€ pages/              # Next.js page routes
β”‚   β”‚   β”œβ”€β”€ styles/             # Global styles
β”‚   β”‚   β”œβ”€β”€ types/              # Custom type definitions
β”‚   β”‚   └── utils/              # Utility functions
β”œβ”€β”€ docker-compose.yml
β”œβ”€β”€ Dockerfile
β”œβ”€β”€ .env.sample
└── README.md

Setup

SSH (recommended)

git clone [email protected]:uwblueprint/llsc.git
cd llsc

If you haven't set up SSH keys already for github, follow the steps outlined here.

HTTPS

git clone https://github.com/uwblueprint/llsc.git
cd llsc
  • Create a .env file in the root directory based on the .env.sample file. Update the environment variables as needed. Consult the Secrets section for detailed instructions.
cp .env.sample .env
  • Build and start the Docker containers
docker-compose up --build
  • Install pdm (this is a global installation, so location doesn't matter) On macOS:
brew install pdm

Otherwise, feel free to follow install instructions here

You will then need to go into each directory individually to install dependencies.

FastAPI backend

cd backend
pdm install

To run the backend server locally (recommended for development), run the following command:

cd backend
pdm run dev

To check if the database has been started up, type the following:

 docker ps | grep llsc_db

This checks the list of docker containers and searchs for the container name llsc_db

NextJS frontend

cd frontend
npm install

To run the frontend server locally (recommended for development), run the following command:

cd frontend
npm run dev

Version Control Guide

Branching

  • Branch off of main for all feature work and bug fixes, creating a "feature branch". Prefix the feature branch name with your github username. The branch name should be in kebab case and it should be short and descriptive and should include the ticket number. E.g. mslwang/LLSC-42-readme-update.

  • To integrate changes on main into your feature branch, use rebase instead of merge

# currently working on feature branch, there are new commits on main
git pull origin main --rebase

# if there are conflicts, resolve them and then:
git add .
git rebase --continue

# force push to remote feature branch
git push --force-with-lease

Docker Commands

If you’re new to Docker, you can learn more about docker-compose commands at this docker compose overview.

# build Builds images
docker-compose
# builds images (if they don’t exist) & starts containers
docker-compose up
# builds images & starts containers
docker-compose up --build
# stops the containers
docker-compose down
# stops the containers and removes volumes
docker-compose down --volumes
# get Names & Statuses of Running Containers
docker ps
# Remove all stopped containers, unused networks, dangling images, and build cache
docker system prune -a --volumes

Accessing PostgreSQL Database

Run in two lines (View Users Table):

docker exec -it llsc_db psql -U postgres -d llsc
SELECT * FROM public.users;

Running the commands line by line.

# run a bash shell in the container
docker exec -it llsc /bin/bash

# in container now
psql -U postgres -d llsc

# in postgres shell, some common commands:
# display all table names
\dt
# quit
\q
# you can run any SQL query, don't forget the semicolon!
SELECT * FROM public."<table-name>";

Seeding the Production Database

TBD

Formatting and Linting

Backend

Ruff

We use Ruff for code linting and formatting in the backend. To check for linting issues:

cd backend
pdm run ruff check .

To automatically fix linting issues:

cd backend
pdm run ruff check --fix .

To run the formatter:

cd backend
pdm run ruff format .

All code needs to pass ruff formatting and linting before it can be merged.

Frontend

Prettier

We use Prettier for code formatting in the frontend. To check for formatting issues:

npm run prettier:check

To automatically fix formatting issues:

npm run prettier:fix

ESLint

We use ESLint for code linting. To check for linting issues:

npm run lint

To automatically fix linting issues:

npm run lint:fix

Combined Formatting and Linting

To run both Prettier and ESLint to format and fix linting issues in one command:

npm run format

Commits

  • Commits should be atomic (guideline: the commit is self-contained; a reviewer could make sense of it even if they viewed the commit diff in isolation)

  • Trivial commits (e.g. fixing a typo in the previous commit, formatting changes) should be squashed or fixup'd into the last non-trivial commit

# last commit contained a typo, fixed now
git add .
git commit -m "Fix typo"

# fixup into previous commit through interactive rebase
# x in HEAD~x refers to the last x commits you want to view
git rebase -i HEAD~2
# text editor opens, follow instructions in there to fixup

# force push to remote feature branch
git push -f
  • Commit messages and PR names are descriptive and written in imperative tense. The first word should be capitalized. E.g. "Create user REST endpoints", not "Created user REST endpoints"
  • PRs can contain multiple commits, they do not need to be squashed together before merging as long as each commit is atomic. Our repo is configured to only allow squash commits to main so the entire PR will appear as 1 commit on main, but the individual commits are preserved when viewing the PR.

Secrets

Secrets are stored in the Environment Variable file within the LLSC notion.

About

🩸 Leukemia & Lymphoma Society of Canada First Connection Peer matching and scheduling platform

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published