Skip to content

OpenLabsHQ/API

Repository files navigation

API

Table of Contents

  1. Developer Quickstart
  2. Tests
  3. Project Structure
  4. VScode Extensions
  5. Debugging
  6. Workflows
  7. Contributing
  8. License

Developer Quickstart

Welcome to the project! Follow these steps to get the service up and running for development.

1. Setup Configuration

Create a .env file in the project root. This file configures both FastAPI and Docker.

cp .env.example .env

2. Choose Your Run Method

Run with Docker

Prerequisites

  • Install Docker and docker compose.

Steps

  1. Build and Run Containers:

    docker compose up

    Note: If you get a KeyError: 'ContainerConfig' error, run docker container prune -f to remove stopped containers.

  2. Congrats! It's working! πŸŽ‰

    API:

    Database:

    • PostgreSQL is available locally on port 5432 (configured via POSTGRES_DEBUG_PORT).

    • Connect using:

      psql -h localhost -p 5432 -U postgres -d openlabsx

See Python Environment Setup to configure your virtual environment.

Run Locally (Without Docker)

Prerequisites

Steps

  1. Setup your Python Environment

  2. Start the API Server:

    fastapi dev src/app/main.py
  3. Congrats! It's working! πŸŽ‰

Python Environment Setup

Prerequisites

Steps

  1. Create Virtual Environment:

    python3.12 -m venv venv
  2. Activate Virtual Environment:

    source venv/bin/activate
  3. Install Dependencies:

    pip install --upgrade pip
    pip install -r requirements.txt
    pip install -r dev-requirements.txt
  4. Run Pre-Commit Hook (Verify Setup):

    pre-commit run --all-files

Tests

Run Tests

# All tests
pytest

# Unit tests
pytest tests/unit/

# Integration Tests
pytest tests/integration/

Code Coverage Report

pytest
open htmlcov/index.html

Test Organization

All tests are located in tests/. The structure of the tests/ directory mirrors the src/app/ directory structure.

Project Structure

src/
└── app
    β”œβ”€β”€ api
    β”‚   └── v1                   # API Version 1 routes (/v1)
    |       |                    # ------------------------- #
    β”‚       β”œβ”€β”€ auth.py          # /auth routes
    β”‚       β”œβ”€β”€ health.py        # /health routes
    β”‚       β”œβ”€β”€ ranges.py        # /ranges routes
    β”‚       β”œβ”€β”€ templates.py     # /templates routes
    β”‚       └── users.py         # /users routes
    |
    β”œβ”€β”€ core                     # Core Application Logic
    |   |                        # ---------------------- #
    β”‚   β”œβ”€β”€ auth/                # Authentication utilities
    β”‚   β”‚   └── auth.py
    β”‚   β”œβ”€β”€ cdktf/               # CDKTF Libraries
    β”‚   β”‚   └── aws/             # AWS provider configuration
    β”‚   β”œβ”€β”€ config.py            # Application settings
    β”‚   β”œβ”€β”€ db                   # Database configuration
    β”‚   β”‚   └── database.py
    β”‚   β”œβ”€β”€ logger.py            # Shared logger utility
    β”‚   └── setup.py             # Application setup logic
    | 
    β”œβ”€β”€ crud                     # Database CRUD operations
    β”‚   β”œβ”€β”€ crud_host_templates.py
    β”‚   β”œβ”€β”€ crud_range_templates.py
    β”‚   β”œβ”€β”€ crud_subnet_templates.py
    β”‚   β”œβ”€β”€ crud_users.py
    β”‚   └── crud_vpc_templates.py
    |
    β”œβ”€β”€ enums                    # Enums (Constants)
    |   |                        # ---------------- #
    β”‚   β”œβ”€β”€ operating_systems.py # OS configurations
    β”‚   β”œβ”€β”€ providers.py         # Defined cloud providers
    β”‚   └── specs.py             # Preset VM hardware configurations
    |
    β”œβ”€β”€ models                   # Database Models
    β”‚   β”œβ”€β”€ secret_model.py        # Encrypted cloud provider credentials (AWS, Azure)
    β”‚   β”œβ”€β”€ template_base_model.py
    β”‚   β”œβ”€β”€ template_host_model.py
    β”‚   β”œβ”€β”€ template_range_model.py
    β”‚   β”œβ”€β”€ template_subnet_model.py
    β”‚   β”œβ”€β”€ template_vpc_model.py
    β”‚   └── user_model.py
    |
    β”œβ”€β”€ schemas                  # API Schema (Objects)
    |   |                        # ------------------ #
    β”‚   β”œβ”€β”€ secret_schema.py      # Cloud provider credential schemas
    β”‚   β”œβ”€β”€ template_host_schema.py
    β”‚   β”œβ”€β”€ template_range_schema.py
    β”‚   β”œβ”€β”€ template_subnet_schema.py
    β”‚   β”œβ”€β”€ template_vpc_schema.py
    β”‚   └── user_schema.py
    |
    β”œβ”€β”€ utils                    # Utility Functions
    β”‚   β”œβ”€β”€ cdktf_utils.py       # CDKTF configuration utilities
    β”‚   └── crypto.py            # Cryptography utilities for encrypting cloud provider credentials
    |
    β”œβ”€β”€ validators               # Data Validation
    |   |                        # --------------- #
    β”‚   β”œβ”€β”€ id.py                # ID validation
    β”‚   └── network.py           # Networking config input validation
    |
    └── main.py                  # Main App Entry Point

VScode Extensions

This is a list of extensions that this project was configured to work with. It has only been tested on VScode.

Extensions:

Black Formatter

You can configure Black to format on save (Ctrl+S) with the following configuration in Preferences: Open User Settings (JSON) (Ctrl+Shift+P).

  "[python]": {
    "editor.defaultFormatter": "ms-python.black-formatter",
    "editor.formatOnSave": true
  }

Debugging

To debug with the python debugger extension, use the docker-compose.dev.yaml file.

docker compose -f docker-compose.dev.yml up

The app will only be started once you run the debugger in VScode.

All changes made to code in your local directory will be applied to the container app and should reload automatically.

Workflows

Code Quality and Testing

black.yml

Runs the Black code formatter in check mode to verify code formatting. The workflow will fail if formatting is needed.

ruff.yml

Runs the Ruff linter to check for code quality issues.

mypy.yml

Performs static type checking with MyPy.

unit_tests.yml

Runs all unit tests located in tests/unit/.

integration_tests.yml

Runs integration tests located in tests/integration/.

Release Management

check_pr_labels.yml

This workflow checks if you correctly labeled your PR for the auto_release.yml workflow to create a proper release. This workflow will recheck when new labels are added to the PR.

Setup: To setup this workflow, you just need a CONTRIBUTING.md file in the root of your project. At minimum it should have a section called No semver label! (Link to example). The workflow will automatically link this section when it fails so user's can fix their PRs. Feel free to copy the example.

auto_release.yml

This workflow automatically creates GitHub tagged releases based on the tag of the PR.

Setup:

  1. Install the Auto release tool (Latest release)

  2. Navigate to the repository

    cd /path/to/repo/API/
  3. Initialize Auto

    For this step the choose Git Tag as the package manager plugin. Fill in the rest of the information relevant to the repo and keep all default values.

    When prompted for a Github PAT, go to the next step.

    auto init
  4. Create repository tags

    This will allow you to tag your PRs and control the semantic version changes.

    auto create-labels
  5. Create a GitHub App

    Note: OpenLabs already has the auto-release-app installed. Skip to step 7.

    This allows us to enforce branch protection rules while allowing the Auto release tool to bypass the protections when running automated workflows. (Source: Comment Link)

    Link: Making authenticated API requests with a GitHub App in a GitHub Actions workflow

  6. Configure the app with the following permissions

    • Actions (read/write)
    • Administration (read/write)
    • Contents (read/write)
  7. Update the ruleset bypass list to include the GitHub App

  8. Add GitHub app variables and secrets

    Secrets:

    • AUTO_RELEASE_APP_PRIVATE_KEY
    • AUTO_RELEASE_APP_ID