Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pwntus/replicate-tools
https://github.com/pwntus/replicate-tools
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pwntus/replicate-tools
- Owner: Pwntus
- Created: 2023-03-22T08:59:03.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-23T20:29:46.000Z (almost 2 years ago)
- Last Synced: 2024-11-29T11:42:49.449Z (24 days ago)
- Language: Vue
- Homepage: https://replicate-tools.vercel.app
- Size: 210 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nuxt Example
Deploy your [Nuxt](https://nuxt.com) project to Vercel with zero configuration.
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/vercel/vercel/tree/main/examples/nuxtjs&template=nuxtjs)
_Live Example: https://nuxtjs-template.vercel.app_
Look at the [Nuxt 3 documentation](https://v3.nuxtjs.org) to learn more.
## Setup
Make sure to install the dependencies:
```bash
# yarn
yarn# npm
npm install# pnpm
pnpm install --shamefully-hoist
```## Development Server
Start the development server on http://localhost:3000
```bash
npm run dev
```## Production
Build the application for production:
```bash
npm run build
```Locally preview production build:
```bash
npm run preview
```Checkout the [deployment documentation](https://v3.nuxtjs.org/guide/deploy/presets) for more information.