Home Repositories

Repositories

Our GitHub repositories and projects. Clone, contribute, and collaborate.

View Organization on GitHub

Our Projects

Fraser_Labs

Public

The Dev Hub website you're looking at right now. Internal documentation and resources for the development team.

HTML JavaScript

Clone this repository:

git clone https://github.com/Fraser-AIS/Fraser_Labs.git

Fraser-Leads

Private

Lead management and tracking system for sales and business development.

Python

Clone this repository:

git clone https://github.com/Fraser-AIS/Fraser-Leads.git

Recruiting-Hub

Private

Internal recruiting and talent acquisition platform.

Python

Clone this repository:

git clone https://github.com/Fraser-AIS/Recruiting-Hub.git

SRCS

Private

Sales Rep Commissions System for calculating and tracking commissions.

Python

Clone this repository:

git clone https://github.com/Fraser-AIS/SRCS_NEW.git

Git Quick Reference

Common Git commands you'll use when working with our repositories.

Cloning & Setup

Clone a repository:

git clone <repo-url>

Check current status:

git status

Branching

Create and switch to a new branch:

git checkout -b feature/your-feature

Switch to an existing branch:

git checkout main

Making Changes

Stage all changes:

git add .

Commit with a message:

git commit -m "Your commit message"

Syncing

Pull latest changes:

git pull origin main

Push your changes:

git push origin your-branch

For detailed Git workflow and branching strategy, see our Standards page.

Contributing

When contributing to our repositories, please follow these steps:

  1. Create a feature branch from main
  2. Make your changes and commit with clear messages
  3. Push your branch and open a Pull Request
  4. Request a code review from a team member
  5. Address any feedback and merge when approved

See our Standards page for detailed coding guidelines and PR requirements.