Repository Access #

Get access to the company repositories.

GitHub Organization #

All our code is hosted on GitHub under the albrightlabs organization.

Request Access #

  1. Create a GitHub account if you don't have one
  2. Send your GitHub username to your manager
  3. Accept the organization invite sent to your email

SSH Key Setup #

Generate an SSH key:

ssh-keygen -t ed25519 -C "your.email@albrightlabs.com"

Add the key to your GitHub account:

# Copy the public key
cat ~/.ssh/id_ed25519.pub

Then add it at GitHub SSH Settings.

Repository Structure #

Repository Description
main-app Primary web application
api-service Backend API microservice
shared-lib Shared utilities and components
infrastructure Terraform and deployment configs

Cloning Repositories #

# Clone with SSH (recommended)
git clone git@github.com:albrightlabs/main-app.git

# Clone with HTTPS
git clone https://github.com/albrightlabs/main-app.git

Next Steps #

Learn our Git Workflow before making changes.