From 4a1279e28b38dd73dea383325c710b1db1318303 Mon Sep 17 00:00:00 2001 From: Kerem Sevencan Date: Wed, 14 Apr 2021 19:14:44 +0200 Subject: [PATCH] update readme --- README.md | 2 +- src/commands/init.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a0f0c9c..a586b83 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ You can install it globally (`npm install -g adr-tool`) or use it with [npx](htt $ npx adr-tool init ./docs/adr folder is created! USAGE - $ npx adr-tool create 'Use Markdown Architectural Decision Records' +$ npx adr-tool create 'Use Markdown Architectural Decision Records' a decision created on ./docs/adr/0000-use-markdown-architectural-decision-records.md ``` # Commands diff --git a/src/commands/init.ts b/src/commands/init.ts index 174d6c1..0c308a5 100644 --- a/src/commands/init.ts +++ b/src/commands/init.ts @@ -35,5 +35,6 @@ export default class Init extends Command { fs.copyFile(cliTOCFile, adrDir + 'README.md', () => null) this.log('./docs/adr folder is created!') + this.log("let's create your first decision: `npx adr-tool create 'Use Markdown Architectural Decision Records'`") } }