91admin-cli

A simple CLI for creating your projects from own Git server

Usage no npm install needed!

<script type="module">
  import 1adminCli from 'https://cdn.skypack.dev/91admin-cli';
</script>

README

91admin

A light tool to generate projects in an easy way(Modify the scion-cli).

Installation

npm install 91admin-cli -g

Usage

Open your terminal and type 91admin or 91admin -h , you'll see the help infomation below:

  Usage: 91admin <command>


  Commands:

    add|a      Add a new template
    list|l     List all the templates
    init|i     Generate a new project
    delete|d   Delete a template

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

Note that if you are using MacOS, sudo was required while using commands add and delete.

Commands

add | a

This command would help you to add a new template to the templates.json, which will be used by 91admin to generate projects.

$ 91admin add

? Set the custom name of the template: vue-admin
?Git https/http link (OR Owner/name) of the template: http://***.git
? Branch of the template: (master)
┌────────────────────┬───────────────────────┬────────┐
│ Template Name      │ Owner/Name            │ Branch │
├────────────────────┼───────────────────────┼────────┤
│ vue-admin          │ https://***.git       │ master │
└────────────────────┴───────────────────────┴────────┘
✔ New template has been added successfully!
✔ New template has been added successfully!

91admin use download-git-repo to down load git repos. After answering 3 questions, you'll add a new template to 91admin.

list | l

It shows you the templates list.

$ 91admin list

┌────────────────────┬───────────────────────┬────────┐
│ Template Name      │ Owner/Name            │ Branch │
├────────────────────┼───────────────────────┼────────┤
│ vue-admin          │ https://***.git       │ master │
└────────────────────┴───────────────────────┴────────┘

init | i

After adding new templates, you could use this command to generate your own project by choosing template.

$ 91admin init

? Template name: my-first-template
? Project name: my-project
? Where to init the project? ../
⠹ Downloading template...

New project has been initialized successfully!

It's easy, right?

delete | d

To delete a template, you could use this command:

$ 91admin delete

? Which template you want to delete? my-second-template
┌───────────────────┬────────────────┬────────┐
│ Template Name     │ Owner/Name     │ Branch │
├───────────────────┼────────────────┼────────┤
│ my-first-template │ jrainlau/scion │ new    │
└───────────────────┴────────────────┴────────┘
✔ Template has been deleted successfully

Template

The most important part of 91admin is template. All templates' infomation were list in the templates.json. A template means a project sample, which has a simple or complex file structure.

You can create your own templates repository, and push your templates in different branches. All you need to do then is to add the templates into 91admin's templates.json.

License

MIT.