- Add main Dockerfile for production builds - Add Dockerfile.runtime for secure code execution - Add Dockerfile.runtime.fixed with improved configuration - Include .dockerignore for build optimization - Add integration documentation and publishing guides - Update API and CLI components for better runtime support - Enhance sandbox and container management features
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
/*
|
|
* Copyright 2025 Hanzo Industries Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0
|
|
*/
|
|
|
|
import { getJestProjectsAsync } from '@nx/jest'
|
|
|
|
export default async () => ({
|
|
projects: await getJestProjectsAsync(),
|
|
})
|