Skip to content

Commit

Permalink
change name to ServerlessInsight
Browse files Browse the repository at this point in the history
Signed-off-by: seven <[email protected]>
  • Loading branch information
Blankll committed Sep 18, 2024
1 parent 275c98e commit b888f1a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
# hostsless
# ServerlessInsight
[![Node.js CI](https://github.com/geek-fun/hostsless/actions/workflows/node.yml/badge.svg)](https://github.com/geek-fun/hostsless/actions/workflows/node.yml)

Full life cycle cross providers serverless application management for your fast-growing business.



## Development
Link ServerlessInsight globally to use the CLI tool.
```bash
npm run build
npm link
```
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@geek-fun/hostsless",
"name": "@geek-fun/serverlessinsight",
"version": "0.0.0",
"description": "Full life cycle cross providers serverless application management for your fast-growing business.",
"homepage": "https://hostsless.geekfun.club",
"homepage": "https://serverlessinsight.geekfun.club",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"hls": "dist/src/commands/index.js"
"si": "dist/src/commands/index.js"
},
"scripts": {
"test": "DEBUG=hostsless jest --runInBand --detectOpenHandles --coverage --coverageReporters json-summary text html lcov",
Expand All @@ -17,12 +17,12 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/geek-fun/hostsless.git"
"url": "git+https://github.com/geek-fun/serverlessinsight.git"
},
"author": "geekfun <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/geek-fun/hostsless/issues"
"url": "https://github.com/geek-fun/serverlessinsight/issues"
},
"dependencies": {
"commander": "^11.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { logger } from '../common/logger';
import { getVersion } from '../common/getVersion';
const program = new Command();

program.name('hls').description('CLI for hostsless').version(getVersion());
program.name('si').description('CLI for ServerlessInsight').version(getVersion());

program
.command('show')
Expand Down
2 changes: 1 addition & 1 deletion src/common/logger.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pino from 'pino';

const logger = pino({
name: 'hostsless',
name: 'ServerlessInsight',
});

export { logger };

0 comments on commit b888f1a

Please sign in to comment.