Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jlarky/create-qgp
https://github.com/jlarky/create-qgp
astro react
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jlarky/create-qgp
- Owner: JLarky
- License: mit
- Created: 2022-10-17T06:47:22.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-28T01:35:35.000Z (over 1 year ago)
- Last Synced: 2024-09-30T15:13:11.259Z (3 months ago)
- Topics: astro, react
- Language: Astro
- Homepage: https://qgp.vercel.app/
- Size: 282 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-qgp
## Templates for a great HRM experience with Astro (and others)
With NPM:
```bash
npm create qgp@latest
```With Yarn:
```bash
yarn create qgp
```With PNPM:
```bash
pnpm create qgp
```With Bun:
```bash
bunx create-qgp
```With Deno:
```bash
deno run -A npm:create-qgp
```Then follow the prompts!
You can also directly specify the project name and the template you want to use via additional command line options. For example, to scaffold a QGP project, run:
```bash
# npm
npm create qgp@latest qgp-demo -- --template qgp-demo# yarn
yarn create qgp qgp-demo --template qgp-demo# pnpm
pnpm create qgp qgp-demo --template qgp-demo# Bun
bunx create-qgp --template qgp-demo# Deno
deno run -A npm:create-qgp --template qgp-demo
```Currently supported template presets include:
| Template | Try online |
| --------------------- | --------------------------------------------------------------------------------------------------------- |
| `qgp-clean` | [StackBlitz](https://stackblitz.com/fork/github/JLarky/create-qgp/tree/main/template-qgp-clean) |
| `qgp-demo` | [StackBlitz](https://stackblitz.com/fork/github/JLarky/create-qgp/tree/main/template-qgp-demo) |
| `astro-vite-cra-ts` | [StackBlitz](https://stackblitz.com/fork/github/JLarky/create-qgp/tree/main/template-astro-vite-cra-ts) |
| `astro-vite-react-ts` | [StackBlitz](https://stackblitz.com/fork/github/JLarky/create-qgp/tree/main/template-astro-vite-react-ts) |
| `astro-vite-solid-ssr` | [StackBlitz](https://stackblitz.com/fork/github/JLarky/create-qgp/tree/main/template-astro-vite-solid-ssr) |You can use `.` for the project name to scaffold in the current directory.
## Attribution
This project is a fork of [create-vite-extra](https://github.com/bluwy/create-vite-extra). Credit goes to all of its contributors.