Skip to content

Commit cf489b1

Browse files
committed
doc: update copywrite
1 parent a152e70 commit cf489b1

File tree

6 files changed

+5103
-3169
lines changed

6 files changed

+5103
-3169
lines changed

.github/workflows/build-and-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ jobs:
4949
tag_name: v${{ steps.package-version.outputs.version }}
5050
release_name: Release v${{ steps.package-version.outputs.version }}
5151
prerelease: false
52-
body: 'Click [change log](https://github.com/BillionBottle/pm2-intercom-log4js/blob/main/CHANGELOG.md) to see more.'
52+
body: 'Click [change log](https://github.com/camus-design/pm2-intercom-log4js/blob/main/CHANGELOG.md) to see more.'

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 BillionBottle Inc.
3+
Copyright (c) 2023 Camus Design Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+16-14
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
# pm2-intercom-log4js
22

3-
[![build](https://img.shields.io/github/workflow/status/BillionBottle/pm2-intercom-log4js/Build%20And%20Publish)](https://github.com/BillionBottle/pm2-intercom-log4js)
3+
[![build](https://img.shields.io/github/workflow/status/camus-design/pm2-intercom-log4js/Build%20And%20Publish)](https://github.com/camus-design/pm2-intercom-log4js)
44
[![npm](https://img.shields.io/npm/v/@takin/pm2-intercom-log4js)](https://www.npmjs.com/package/@takin/pm2-intercom-log4js)
55
[![node](https://img.shields.io/node/v/@takin/pm2-intercom-log4js)](https://www.npmjs.com/package/@takin/pm2-intercom-log4js)
6-
[![license](https://img.shields.io/github/license/BillionBottle/pm2-intercom-log4js)](https://github.com/BillionBottle/pm2-intercom-log4js)
6+
[![license](https://img.shields.io/github/license/camus-design/pm2-intercom-log4js)](https://github.com/camus-design/pm2-intercom-log4js)
77

88
A tool to solve [log4js](https://github.com/log4js-node/log4js-node) log synchronization in <a href="https://github.com/Unitech/pm2" title="PM2">PM2</a>'s multiprocess mode.
99

1010
English | [简体中文](README.zh-CN.md)
1111

1212
## Table of Contents
1313

14-
- [Background](#background)
15-
- [Get Started](#get-started)
16-
- [Install](#install)
17-
- [Usage](#usage)
18-
- [API](#api)
19-
- [Example](#example)
20-
- [Contributing](#contributing)
21-
- [License](#license)
14+
- [pm2-intercom-log4js](#pm2-intercom-log4js)
15+
- [Table of Contents](#table-of-contents)
16+
- [Background](#background)
17+
- [Get Started](#get-started)
18+
- [Install](#install)
19+
- [Usage](#usage)
20+
- [API](#api)
21+
- [Example](#example)
22+
- [Contributing](#contributing)
23+
- [License](#license)
2224

2325
## Background
2426

@@ -33,7 +35,7 @@ pm2-intercom-log4js only exports one function, which is very convenient to use.
3335
This project uses [node](http://nodejs.org) and [npm](https://npmjs.com). Make sure that you have installed them locally.
3436

3537
```sh
36-
$ npm install @takin/pm2-intercom-log4js
38+
npm install @takin/pm2-intercom-log4js
3739
```
3840

3941
### Usage
@@ -68,7 +70,7 @@ The `pm2Intercom` function above supports passing in an optional parameters obje
6870
We use PM2 to run the script in the `examples` directory and start two processes.
6971

7072
```sh
71-
$ pm2 start ./examples/index.js -i 2
73+
pm2 start ./examples/index.js -i 2
7274
```
7375

7476
When we don't use the `pm2Intercom` function (ie, comment out the `await pm2Intercom();` in the script), we see only one process successfully printing the log through the `pm2 logs` command.
@@ -99,8 +101,8 @@ xxx\.pm2\logs\index-out-0.log last 15 lines:
99101

100102
## Contributing
101103

102-
You are very welcome to join us! [Submit an issue](https://github.com/BillionBottle/pm2-intercom-log4js/issues/new) or submit a pull request.
104+
You are very welcome to join us! [Submit an issue](https://github.com/camus-design/pm2-intercom-log4js/issues/new) or submit a pull request.
103105

104106
## License
105107

106-
[MIT](LICENSE) © Billion Bottle
108+
[MIT](LICENSE) © Camus Design

README.zh-CN.md

+13-11
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,26 @@
11
# pm2-intercom-log4js
22

3-
[![build](https://img.shields.io/github/workflow/status/BillionBottle/pm2-intercom-log4js/Build%20And%20Publish)](https://github.com/BillionBottle/pm2-intercom-log4js)
3+
[![build](https://img.shields.io/github/workflow/status/camus-design/pm2-intercom-log4js/Build%20And%20Publish)](https://github.com/camus-design/pm2-intercom-log4js)
44
[![npm](https://img.shields.io/npm/v/@takin/pm2-intercom-log4js)](https://www.npmjs.com/package/@takin/pm2-intercom-log4js)
55
[![node](https://img.shields.io/node/v/@takin/pm2-intercom-log4js)](https://www.npmjs.com/package/@takin/pm2-intercom-log4js)
6-
[![license](https://img.shields.io/github/license/BillionBottle/pm2-intercom-log4js)](https://github.com/BillionBottle/pm2-intercom-log4js)
6+
[![license](https://img.shields.io/github/license/camus-design/pm2-intercom-log4js)](https://github.com/camus-design/pm2-intercom-log4js)
77

88
一个解决 [PM2](https://github.com/Unitech/pm2) 多进程模式下 [log4js](https://github.com/log4js-node/log4js-node) 日志同步问题的工具。
99

1010
[English](README.md) | 简体中文
1111

1212
## 目录
1313

14-
- [背景](#背景)
15-
- [如何开始](#如何开始)
14+
- [pm2-intercom-log4js](#pm2-intercom-log4js)
15+
- [目录](#目录)
16+
- [背景](#背景)
17+
- [如何开始](#如何开始)
1618
- [安装](#安装)
1719
- [使用](#使用)
1820
- [API](#api)
19-
- [示例](#示例)
20-
- [如何贡献](#如何贡献)
21-
- [使用许可](#使用许可)
21+
- [示例](#示例)
22+
- [如何贡献](#如何贡献)
23+
- [使用许可](#使用许可)
2224

2325
## 背景
2426

@@ -33,7 +35,7 @@ pm2-intercom-log4js 仅仅导出了一个函数,使用非常方便。
3335
这个项目使用了 [node](http://nodejs.org)[npm](https://npmjs.com)。请确保你本地安装了它们。
3436

3537
```sh
36-
$ npm install @takin/pm2-intercom-log4js
38+
npm install @takin/pm2-intercom-log4js
3739
```
3840

3941
### 使用
@@ -68,7 +70,7 @@ pm2Intercom().catch((err) => {
6870
我们使用 PM2 运行目录 `examples` 中的脚本并启动两个进程。
6971

7072
```sh
71-
$ pm2 start ./examples/index.js -i 2
73+
pm2 start ./examples/index.js -i 2
7274
```
7375

7476
当我们不使用 `pm2Intercom` 函数时(即将脚本中的 `await pm2Intercom();` 注释),我们通过 `pm2 logs` 命令看到只有一个进程成功打印了日志。
@@ -99,8 +101,8 @@ xxx\.pm2\logs\index-out-0.log last 15 lines:
99101

100102
## 如何贡献
101103

102-
非常欢迎你的加入![提一个 Issue](https://github.com/BillionBottle/pm2-intercom-log4js/issues/new) 或者提交一个 Pull Request。
104+
非常欢迎你的加入![提一个 Issue](https://github.com/camus-design/pm2-intercom-log4js/issues/new) 或者提交一个 Pull Request。
103105

104106
## 使用许可
105107

106-
[MIT](LICENSE) © Billion Bottle
108+
[MIT](LICENSE) © Camus Design

0 commit comments

Comments
 (0)