Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  prepare-codex-ci-config.ts

  Sprache: JAVA
 

import fs from "node:fs/promises";
import path from "node:path";

function tomlString(value: string): string {
  return JSON.stringify(value);
}

export function buildCiSafeCodexConfig(params: {
  projectPath: string;
  approvalPolicy?: string;
  sandboxMode?: string;
}): string {
  if (!params.projectPath || typeof params.projectPath !== "string") {
    throw new Error("projectPath is required.");
  }
  const resolvedProjectPath = path.resolve(params.projectPath);
  const approvalPolicy = params.approvalPolicy ?? "never";
  const sandboxMode = params.sandboxMode ?? "workspace-write";
  return [
    "# Generated for Codex CI runs.",
    "# Keep the checked-out repo trusted while avoiding maintainer-local",
    "# provider/profile overrides that do not exist on CI runners.",
    `approval_policy = ${tomlString(approvalPolicy)}`,
    `sandbox_mode = ${tomlString(sandboxMode)}`,
    "",
    `[projects.${tomlString(resolvedProjectPath)}]`,
    'trust_level = "trusted"',
    "",
  ].join("\n");
}

export async function writeCiSafeCodexConfig(params: {
  outputPath: string;
  projectPath: string;
  approvalPolicy?: string;
  sandboxMode?: string;
}): Promise<string> {
  if (!params.outputPath || typeof params.outputPath !== "string") {
    throw new Error("outputPath is required.");
  }
  const rendered = buildCiSafeCodexConfig(params);
  await fs.mkdir(path.dirname(params.outputPath), { recursive: true });
  await fs.writeFile(params.outputPath, rendered, "utf-8");
  return rendered;
}

if (path.basename(process.argv[1] ?? "") === "prepare-codex-ci-config.ts") {
  const outputPath = process.argv[2];
  const projectPath = process.argv[3] ?? process.cwd();
  await writeCiSafeCodexConfig({ outputPath, projectPath });
}

Messung V0.5 in Prozent
C=100 H=100 G=100

¤ Dauer der Verarbeitung: 0.13 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik