Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ dist/
doc/
doc*/
node_modules/
test/fs/

*.md
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,5 @@ dist/

# Environment Variables
.env

test/fs/
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
# sdlc - Readme

# SDLC

SDLC is a CLI tool for initializing and managing software development lifecycle projects. It provides commands to quickly set up project configuration and git integration.

## Installation

Clone the repository and install dependencies:

```bash
npm i -g sdlc
```

## Usage

Run the CLI using:

```bash
npx sdlc <command>
```

Or add to your PATH for global usage.

## `init` Command

Initialize a new SDLC project with default configuration and git setup:

```bash
npx sdlc init
```

This will:
- Initialize a git repository in the current directory
- Create a default SDLC configuration file

## Contributing & Development

Expand Down
Loading