Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs/ README #138

Merged
merged 1 commit into from
Aug 26, 2023
Merged
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
77 changes: 77 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,80 @@
A sappio looking somewhere over rainbow. It means, a simple logging NodeJS template app.

You may access the [wiki](https://github.com/web-needle/sappio/wiki/How-to-sappio) to learn about it.

# How to operate

Run the commands below on `sappio` root path:


## Install

- What: Install the required packages:

```
make install
```

## Prepare

- What: updates dependencies to latest and commit-push changes:

```
make update
```

## Clean

- What: remove all unnecessary assets:

```
make update
```

## List

- What: Lists packages used on pattern `package_name:num_occurrences:is_used`:

```
make list
```

## Lint

- What: Performs inplace lint fixes:

```
make lint
```

## Test

- What: run the test batch

```
make test
```

## Test watch

- What: watch the test batch

```
make watch
```

## Run

- What: run the application:

```
make start
```

## Deploy

- What: Runs docker up:

```
make deploy
```