Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stormslowly/seatup
[wip] a simple setup tool
https://github.com/stormslowly/seatup
cli setup utility
Last synced: 24 days ago
JSON representation
[wip] a simple setup tool
- Host: GitHub
- URL: https://github.com/stormslowly/seatup
- Owner: stormslowly
- License: mit
- Created: 2023-02-05T14:46:18.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-01-29T08:51:40.000Z (9 months ago)
- Last Synced: 2024-09-13T02:27:34.676Z (about 2 months ago)
- Topics: cli, setup, utility
- Language: Smarty
- Homepage:
- Size: 488 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Seatup
=================![logo-slogan](https://raw.githubusercontent.com/stormslowly/seatup/master/logos/logo-slogan.png)
[![Version](https://img.shields.io/npm/v/seatup.svg)](https://npmjs.org/package/seatup)
[![CircleCI](https://circleci.com/gh/oclif/hello-world/tree/main.svg?style=shield)](https://circleci.com/gh/stormslowly/seatup/tree/master)
[![Downloads/week](https://img.shields.io/npm/dw/seatup.svg)](https://npmjs.org/package/seatup)
[![License](https://img.shields.io/npm/l/seatup.svg)](https://github.com/stormslowly/seatup/blob/master/package.json)* [Usage](#usage)
* [Commands](#commands)# Usage
```sh-session
$ npm install -g seatup
$ setup COMMAND
running command...
$ setup (--version)
seatup/1.0.0-alpha.1 darwin-x64 node-v16.14.0
$ setup --help [COMMAND]
USAGE
$ setup COMMAND
...
```# Commands
* [`setup autocomplete [SHELL]`](#setup-autocomplete-shell)
* [`setup cnpm`](#setup-cnpm)
* [`setup global`](#setup-global)
* [`setup hello PERSON`](#setup-hello-person)
* [`setup hello world`](#setup-hello-world)
* [`setup help [COMMANDS]`](#setup-help-commands)
* [`setup prettier`](#setup-prettier)
* [`setup ts`](#setup-ts)
* [`setup typescript`](#setup-typescript)## `setup autocomplete [SHELL]`
display autocomplete installation instructions
```
USAGE
$ setup autocomplete [SHELL] [-r]ARGUMENTS
SHELL shell typeFLAGS
-r, --refresh-cache Refresh cache (ignores displaying instructions)DESCRIPTION
display autocomplete installation instructionsEXAMPLES
$ setup autocomplete$ setup autocomplete bash
$ setup autocomplete zsh
$ setup autocomplete --refresh-cache
```_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v2.1.8/src/commands/autocomplete/index.ts)_
## `setup cnpm`
config NPM registry to China mirror
```
USAGE
$ setup cnpm [-r]FLAGS
-r, --recover recover npm config from backup fileDESCRIPTION
config NPM registry to China mirrorEXAMPLES
$ setup cnpm$ setup cnpm --recover
```_See code: [dist/commands/cnpm.ts](https://github.com/stormslowly/seatup/blob/v1.0.0-alpha.1/dist/commands/cnpm.ts)_
## `setup global`
describe the command here
```
USAGE
$ setup globalDESCRIPTION
describe the command hereEXAMPLES
$ setup global
```_See code: [dist/commands/global.ts](https://github.com/stormslowly/seatup/blob/v1.0.0-alpha.1/dist/commands/global.ts)_
## `setup hello PERSON`
Say hello
```
USAGE
$ setup hello [PERSON] -fARGUMENTS
PERSON Person to say hello toFLAGS
-f, --from= (required) Who is saying helloDESCRIPTION
Say helloEXAMPLES
$ oex hello friend --from oclif
hello friend from oclif! (./src/commands/hello/index.ts)
```_See code: [dist/commands/hello/index.ts](https://github.com/stormslowly/seatup/blob/v1.0.0-alpha.1/dist/commands/hello/index.ts)_
## `setup hello world`
Say hello world
```
USAGE
$ setup hello worldDESCRIPTION
Say hello worldEXAMPLES
$ setup hello world
hello world! (./src/commands/hello/world.ts)
```## `setup help [COMMANDS]`
Display help for setup.
```
USAGE
$ setup help [COMMANDS] [-n]ARGUMENTS
COMMANDS Command to show help for.FLAGS
-n, --nested-commands Include all nested commands in the output.DESCRIPTION
Display help for setup.
```_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.2/src/commands/help.ts)_
## `setup prettier`
setup prettier basic config
```
USAGE
$ setup prettier [-c ] [--skip]FLAGS
-c, --client= [default: pnpm] npm client to use
--skip skip package installDESCRIPTION
setup prettier basic configEXAMPLES
$ setup prettier
```_See code: [dist/commands/prettier.ts](https://github.com/stormslowly/seatup/blob/v1.0.0-alpha.1/dist/commands/prettier.ts)_
## `setup ts`
setup basic tsconfig and its utils
```
USAGE
$ setup tsDESCRIPTION
setup basic tsconfig and its utilsALIASES
$ setup typescriptEXAMPLES
$ setup ts
```_See code: [dist/commands/ts.ts](https://github.com/stormslowly/seatup/blob/v1.0.0-alpha.1/dist/commands/ts.ts)_
## `setup typescript`
setup basic tsconfig and its utils
```
USAGE
$ setup typescriptDESCRIPTION
setup basic tsconfig and its utilsALIASES
$ setup typescriptEXAMPLES
$ setup typescript
```