https://github.com/departure-inc/skeleton-cli
This is the skeleton command for the initial project file deployment.
https://github.com/departure-inc/skeleton-cli
skeleton-generator
Last synced: 4 months ago
JSON representation
This is the skeleton command for the initial project file deployment.
- Host: GitHub
- URL: https://github.com/departure-inc/skeleton-cli
- Owner: departure-inc
- Created: 2023-07-18T09:11:05.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-14T06:34:06.000Z (4 months ago)
- Last Synced: 2025-01-14T07:35:41.311Z (4 months ago)
- Topics: skeleton-generator
- Language: Rust
- Homepage: https://github.com/departure-inc/skeleton-cli
- Size: 924 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- Security: SECURITY.md
Awesome Lists containing this project
README
# Skeleton CLI
This is the skeleton command for the initial project file deployment.
See: https://github.com/departure-inc/skeleton-cli
Check skeleton/README.md on departure inc for details.
See: https://github.com/rawhide/skeleton
# Installation
```bash
$ brew tap departure-inc/skeleton-cli
$ brew install skeleton-cli
```# Usage
Create a new project.
example.
```bash
# rails
$ rails new example-app -T -B# nextjs
$ pnpm create next-app# rust
$ cargo new example-app# flutter
$ flutter create example-app --org com.example
```Go to project root.
```
Usage: skeleton [OPTIONS] [ARGS]OPTIONS:
rails : Ruby on Rails
next : Next.js
rust : Rust, Axum and SQLx
python : Python, FastAPI and SQLAlchemy
flutter: FlutterARGS:
init : initialize project.
help : help.
```Run any command.
```bash
$ skeleton rails init
$ skeleton next init
$ skeleton rust init
$ skeleton python init
$ skeleton flutter init
```# Help
```bash
$ skeleton help
```## The following features to be implemented.
```bash
$ skeleton next g scaffold User name:string email:string
$ skeleton rust g scaffold User name:string email:stringARGS:
g | generate : resource generator
```