diff --git a/README.md b/README.md index 6c41228..5627c88 100644 --- a/README.md +++ b/README.md @@ -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 +``` diff --git a/package.json b/package.json index 6736f82..c5e9ae0 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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 ", "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", diff --git a/src/commands/index.ts b/src/commands/index.ts index 4db2cce..1e8c858 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -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') diff --git a/src/common/logger.ts b/src/common/logger.ts index 8b9a995..52e4ed1 100644 --- a/src/common/logger.ts +++ b/src/common/logger.ts @@ -1,7 +1,7 @@ import pino from 'pino'; const logger = pino({ - name: 'hostsless', + name: 'ServerlessInsight', }); export { logger };