Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/barbapapazes/hub-starter-typecheck
https://github.com/barbapapazes/hub-starter-typecheck
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/barbapapazes/hub-starter-typecheck
- Owner: Barbapapazes
- Created: 2024-05-05T09:21:30.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-12-14T02:11:04.000Z (9 days ago)
- Last Synced: 2024-12-20T11:12:59.147Z (3 days ago)
- Language: Vue
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NuxtHub Starter Template
This starter lets you get started with [NuxtHub](https://hub.nuxt.com) in seconds.
- [Documentation](https://hub.nuxt.com)
## Features
- Image upload with [`hubBlob()`](http://hub.nuxt.com/docs/storage/blob)
- Save chat messages with [`hubDatabase()`](http://hub.nuxt.com/docs/storage/database)
- Save server redirects with [`hubKV()`](http://hub.nuxt.com/docs/storage/kv)## 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
```Check out the [deployment documentation](https://hub.nuxt.com/docs/getting-started/deploy) for more information.