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" +}