Bits of Good's central infrastructure API, integrating several in-house services to simplify and streamline project development.
Juno is a monorepo using a combination of NestJS, gRPC, Protobuf, Prisma, and Postgres for API endpoints, interservice communication, and object storage/modeling.
Packages are managed through PNPM Workspaces. The current packages are as follows:
-
api-gateway: The publicly visible API routes and their first-layer validation + logic. Decides what services to utilize per-request via Remote Procedure Call (RPC) based on the API route and given information
-
auth-service: An internal service used to handle all API authentication necessities. Provides RPC endpoints for API key generation/validation/revocation and JWT generation/validation. Used in some endpoints but primarily as middleware within the gateway to ensure authorized access to other services
-
db-service: An internal service that interfaces with the database layer (Postgres). Handles all schema structuring and object relations (users, projects, api keys, etc.). This was kept as a single service to provide an interface for all other services to perform CRUD operations on the data they work with without needing to know the underlying storage internals
-
email-service: A SendGrid-based central service for managing per-project mailing functionality with support for all major mailing providers.
-
logging-service: A dedicated logging service for error and audit logs, including traces, metrics information, and sentry.io integration.
Warning
Due to several of the initialization and configuration scripts requiring Unix-specific functionality, building on Windows is currently not supported. However, you can still install Juno onto Windows via WSL2. When later installing Docker Desktop, follow the official instructions to ensure Docker Desktop WSL 2 is enabled.
- Docker Desktop v4.24+
- protoc
- WSL2 if running on a Windows OS
As this repository contains multiple packages, Docker is used to spin up all microservices in order with their respective dependencies. For more details regarding the docker process and its internal networking mechanism, take a look at the docker-dev-compose.yml
and Dockerfile
file.
Most of the docker-related functionality has been abstracted away into pnpm commands.
All package dependencies must first be installed by using the following command in the root directory:
pnpm install
For spinning up the stack and automatically updating as changes are made to files:
pnpm start:dev:live-all
Requests can be made at the endpoint localhost:3000/some/request/path
.
Juno currently has support for E2E tests via Jest.
To run tests a single time for a particular service:
- api-gateway:
pnpm test:e2e:api-gateway
- auth-service:
pnpm test:e2e:auth-service
- db-service:
pnpm test:e2e:db-service
To continuously run tests for a service as file changes are made:
- api-gateway:
pnpm test:e2e:api-gateway-live
- auth-service:
pnpm test:e2e:auth-service-live
- db-service:
pnpm test:e2e:db-service-live
Make sure everything is done through the Windows Subsystem for Linux (WSL).
Some common issues:
- Forgetting to install
protoc
- Incorrect line endings in
.sh
files (should beLF
, notCRLF
) - Error message
additional property <> is not allowed
: Docker Desktop should be updated to v4.24+ - Error message
db-service is unhealthy
: Make sure all shell scripts have correctchmod
permissions - Error message
<>.sh: Permission denied
: Make sure all shell scripts have correctchmod
permissions
If VSCode outputs Failed to connect. Is Docker running?
:
- First, ensure Docker Desktop is actually running.
- If it is, Docker Desktop most likely decided to nuke your settings, re-enable WSL in Settings > Resources > WLS integration
To add chmod
permissions to all shell scripts:
chmod +x packages/db-service/entrypoint.sh