Main Site
Find a file
2025-06-17 22:37:13 -04:00
.github feat: docker (#5) 2024-09-06 22:41:03 -04:00
public feat(tree-wide): init 2025-06-17 22:37:13 -04:00
server feat(tree-wide): init 2025-06-17 22:37:13 -04:00
.dockerignore feat: docker (#5) 2024-09-06 22:41:03 -04:00
.gitignore feat(tree-wide): init 2025-06-17 22:37:13 -04:00
app.vue feat(tree-wide): init 2025-06-17 22:37:13 -04:00
bun.lockb feat(tree-wide): init 2025-06-17 22:37:13 -04:00
CONTRIBUTING.md enhancement(lint): Fix lint errors for CONTRIBUTING.md 2024-09-06 17:28:22 +00:00
docker-compose.yml enhancement(lint): Fix lint errors for docker-compose.yml 2024-09-07 02:41:08 +00:00
Dockerfile fix: ci (#7) 2024-09-06 22:52:58 -04:00
eslint.config.mjs feat(tree-wide): init 2025-06-17 22:37:13 -04:00
justfile chore: changes (#4) 2024-09-06 13:28:40 -04:00
LICENSE readme 2024-06-25 01:27:08 -04:00
nuxt.config.ts feat(tree-wide): init 2025-06-17 22:37:13 -04:00
package.json feat(tree-wide): init 2025-06-17 22:37:13 -04:00
README.md feat(tree-wide): init 2025-06-17 22:37:13 -04:00
shell.nix add nix 2024-08-25 16:04:36 -04:00
tsconfig.json feat(tree-wide): init 2025-06-17 22:37:13 -04:00
wak.toml Feat/contact and donate in php (#14) 2025-01-26 23:07:20 -05:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.