hyperioncli (Commands)
npx hyperioncli@unstable-flake <command> [options]yarn dlx hyperioncli@unstable-flake <command> [options]pnpx hyperioncli@unstable-flake <command> [options]nlx hyperioncli@unstable-flake <command> [options]-
Follow the
hyperioncliprompts.1. Welcome to Turbo. Let's get started.- What is the path to your new turborepo? ./(turboPath)1. Welcome to Nitrox. Let's get you up and running.- What is the path to your new site? ./(sitePath)- How strict should TypeScript be? Strict- Install dependencies? Y/n- Initialize a Git repository? Y/n2. Now, let's add some integrations.- Which UI integrations do you want to add? React, (others)- Would you like to add an SSR Adapter? (Adapter)- Would you like to add any other integrations? Tailwind, (others) -
Finish all other configuration, if your running Nitrox.
styles/global.css @tailwind base;@tailwind components;@tailwind utilities;src/pages/index.astro ---import '@/styles/global.css'---astro.config.mjs import { defineConfig } from 'astro/config';import react from '@astrojs/react';import tailwind from '@astrojs/tailwind';export default defineConfig({integrations: [tailwind(),tailwind({applyBaseStyles: false,}),react()],})tsconfig.json {"compilerOptions": {// ..."baseUrl": ".","paths": {"@/*": ["./src/*"]}// ...}} -
Initialize shadcn/ui.
Terminal window npx shadcn@latest initTerminal window yarn dlx shadcn@latest initTerminal window pnpx shadcn@latest initTerminal window nlx shadcn@latest init