kgarchie / Ticketer

Links
Other
1 stars 2 forks source link
javascript nodejs nuxt3 ticketing-system typescript

(c) 2023, All Rights Reserved.

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies: Pick one of the following depending on your package manager:

# yarn
yarn install

# npm
npm install

# pnpm
pnpm install

Development Server

Start the development server on http://localhost:3000 - Development server won't work due to the way WebsSocketServer is Set Up - Skip to Production

# yarn
yarn dev

# npm
npm run dev

Production

Build the application for production:

# yarn on linux
yarn build

# yarn on windows
yarn build:windows

# Or
# npm linux
npm run build

# npm windows
npm run build:windows

Recommended: Locally start the built server

# yarn
yarn start

# npm
npm run start

You are basically done at this point. You can now deploy the .output directory to your server.

Untested: Locally preview production build:

# yarn
yarn preview

# npm
npm run preview

Check out the deployment documentation for more information.