Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AS-Devs/create-setup
This is an Setup CLI tool to have different template so that we can create custom apps with an initial setup
https://github.com/AS-Devs/create-setup
boilerplate npm pnpm react semoss-sdk starter template
Last synced: 3 months ago
JSON representation
This is an Setup CLI tool to have different template so that we can create custom apps with an initial setup
- Host: GitHub
- URL: https://github.com/AS-Devs/create-setup
- Owner: AS-Devs
- Created: 2024-07-08T06:59:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-13T19:58:36.000Z (4 months ago)
- Last Synced: 2024-07-13T20:57:10.079Z (4 months ago)
- Topics: boilerplate, npm, pnpm, react, semoss-sdk, starter, template
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/@susanta96/create-setup
- Size: 84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# @susanta96/create-setup
This is an idea to built an scafolling CLI tool which helps you to run different templates for different projects. To Start an project you just need to run the command and it will ask you for the project name and the template you want to use. It will create a folder with the project name and will copy the template files to the project folder.
## Quick start guide
Directly use this command in your terminal.
```bash
npx @susanta96/create-setup@latest#or
pnpm dlx @susanta96/create-setup@latest
#or
bunx @susanta96/create-setup@latest
```It will ask the following questions:
- Project name
- Template typeThe CLI will create a new directory named by the project name.
Go to project folder, and run these commands.```bash
cd "folder_name"
pnpm install
pnpm dev
```## Available Templates Types
- React with CFG SDK & ViteJS (Recommended)
- React with CFG SDK & Webpack## Features that helps you
- vite.js
- webpack
- React
- TypeScript (optional)
- EsLint
- Prettier
- Visual Studio Code Extension recommendations
- Visual Studio Code settings (format & lint your code on save)
- TailwindCSS (optional)
- Shadcn-ui (optional)
- Recoil (state-management)
- TanStack Query (optional)
- @semoss/sdk
- @semoss/sdk-react## Notes
All templates provide a simple counter app without styles or very basic styles. But for CFG specific apps will have proper README to setup the Semoss SDK and Environment Variable Required.