ez deploy

This commit is contained in:
suricatingss
2025-12-05 20:45:01 +00:00
parent 60a6342814
commit 3ea91d9058
2 changed files with 13 additions and 45 deletions

View File

@@ -7,69 +7,37 @@ Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduct
Make sure to install dependencies:
```bash
# npm
npm install
# pnpm
npm i -g pnpm # (updates your pnpm :D)
pnpm install
# yarn
yarn install
# bun
bun install
```
(this project uses PNPM)
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
## Deployment
```bash
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run preview
```
Start the production server
```bash
node .output/server/index.mjs
```
### Check out the docker file to turn your app into a container for easy deployment!
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.