From 7ee22adb208c5066300be1a4414df82a65c1bafe Mon Sep 17 00:00:00 2001 From: rdev-worker Date: Tue, 3 Feb 2026 03:00:40 +0000 Subject: [PATCH] build: Initialize SDLC for this project and create a feature with slug 'add-... --- .sdlc.ts | 9 +++++++++ .sdlc/features/add-hello-endpoint/feature.json | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 .sdlc.ts create mode 100644 .sdlc/features/add-hello-endpoint/feature.json diff --git a/.sdlc.ts b/.sdlc.ts new file mode 100644 index 0000000..3be3f30 --- /dev/null +++ b/.sdlc.ts @@ -0,0 +1,9 @@ +import { SDLCConfig, defaultConfig } from 'sdlc'; + +export default function makeConfig(): SDLCConfig { + const config: SDLCConfig = defaultConfig; + + // Customize configuration here + + return config; +} diff --git a/.sdlc/features/add-hello-endpoint/feature.json b/.sdlc/features/add-hello-endpoint/feature.json new file mode 100644 index 0000000..8fa5358 --- /dev/null +++ b/.sdlc/features/add-hello-endpoint/feature.json @@ -0,0 +1,6 @@ +{ + "slug": "add-hello-endpoint", + "title": "Add /hello endpoint to API service", + "status": "planning", + "createdAt": "2026-02-03T02:59:00Z" +}