Nuxia is a fullstack starter template for Nuxt, built to help you ship fast with clean and minimal setup. Whether you're building an MVP, dashboard, or internal tool — Nuxia gives you a powerful starting point.
- ✅ Nuxt — The Progressive Web Framework
- 🎨 Tailwind CSS — Utility-first CSS framework for rapid UI development
- 🧩 shadcn-vue — Beautiful UI components built with Tailwind CSS
- 🧠 Drizzle ORM — Headless TypeScript ORM with a head
- 🐘 PostgreSQL — Reliable open-source SQL database
- 🔐 nuxt-auth-utils — Authentication utilities for Nuxt
- 🛠️ nuxt-workers — SSR-safe, zero-config Web Workers integration for Nuxt
- 📨 Vue Email — Build and send emails using Vue & TypeScript
- ✉️ Nodemailer — Send emails easily with SMTP
- 🔎 Zod — TypeScript-first schema validation with superpowers
- 🌱 TypeScript — Full type safety across frontend & backend
# Clone the repository using `giget`
npx giget@latest gh:gravitano/nuxia nuxia-app
cd nuxia-app
# Copy the example environment variables
cp .env.example .env
# Install dependencies
pnpm install # or yarn, bun, etc.
# Migrate the database and seed initial data
pnpm db:push # migrate the database
pnpm db:seed
# Start the development server
pnpm dev
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.