https://github.com/chihebnabil/docs.aipify.co
Create your documentation in seconds with this template
https://github.com/chihebnabil/docs.aipify.co
Last synced: 2 months ago
JSON representation
Create your documentation in seconds with this template
- Host: GitHub
- URL: https://github.com/chihebnabil/docs.aipify.co
- Owner: chihebnabil
- Created: 2024-02-18T18:46:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-24T18:18:56.000Z (over 1 year ago)
- Last Synced: 2025-02-09T07:35:05.975Z (4 months ago)
- Language: TypeScript
- Size: 329 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Nuxt UI Pro - Docs template
[](https://ui.nuxt.com/pro)
[](https://nuxt.studio/themes/docs)- [Live demo](https://nuxt-ui-pro-template-docs.vercel.app/)
- [Play on Stackblitz](https://stackblitz.com/github/nuxt-ui-pro/docs)
- [Documentation](https://ui.nuxt.com/pro/guide)
- [Clone on Nuxt Studio](https://nuxt.studio/themes/docs)## Quick Start
```bash [Terminal]
npx nuxi init -t github:nuxt-ui-pro/docs
```## Setup
Make sure to install the dependencies:
```bash
# npm
npm install# pnpm
pnpm install# yarn
yarn install# bun
bun install
```## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev# pnpm
pnpm run dev# yarn
yarn dev# bun
bun run dev
```## Production
Build the application for production:
```bash
# npm
npm run build# pnpm
pnpm run build# yarn
yarn build# bun
bun run build
```Locally preview production build:
```bash
# npm
npm run preview# pnpm
pnpm run preview# yarn
yarn preview# bun
bun run preview
```Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
## Nuxt Studio integration
Add `@nuxthq/studio` dependency to your package.json:
```bash
# npm
npm install --save-dev @nuxthq/studio# pnpm
pnpm add -D @nuxthq/studio# yarn
yarn add -D @nuxthq/studio# bun
bun add -d @nuxthq/studio
```Add this module to your `nuxt.config.ts`:
```ts
export default defineNuxtConfig({
...
modules: [
...
'@nuxthq/studio'
]
})
```Read more on [Nuxt Studio docs](https://nuxt.studio/docs/projects/setup).
## Renovate integration
Install [Renovate GitHub app](https://github.com/apps/renovate/installations/select_target) on your repository and you are good to go.