Frontend for Gorb
Find a file
Radical 8ae492a9f1
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
ci: use adduser command instead of useradd
I'm used to GNU distros and not busybox so i did a little whoopsie
2025-05-05 13:22:39 +02:00
.vscode Initial commit 2025-04-29 00:47:06 +02:00
.woodpecker ci: add ci and docker files 2025-05-05 13:11:07 +02:00
assets/img feat: add placeholder images 2025-05-01 22:30:41 +02:00
components wip: more work 2025-04-30 07:40:51 +02:00
layouts wip: more work on client look 2025-05-01 22:38:59 +02:00
pages chore: remove unused styles 2025-05-01 22:39:40 +02:00
public Initial commit 2025-04-29 00:47:06 +02:00
server Initial commit 2025-04-29 00:47:06 +02:00
stores feat: add basis of auth 2025-05-01 22:35:18 +02:00
utils feat: add hashing and validation utility functions 2025-05-01 22:29:53 +02:00
.gitignore Initial commit 2025-04-29 00:47:06 +02:00
app.vue refactor: remove default.vue layout and move contents back to app.vue 2025-05-01 22:34:22 +02:00
Dockerfile ci: use adduser command instead of useradd 2025-05-05 13:22:39 +02:00
entrypoint.sh ci: add ci and docker files 2025-05-05 13:11:07 +02:00
eslint.config.mjs Initial commit 2025-04-29 00:47:06 +02:00
LICENSE chore: add LICENSE file 2025-04-29 17:13:23 +02:00
nuxt.config.ts chore: update dependencies and Nuxt site config 2025-05-01 22:31:58 +02:00
package.json chore: update dependencies and Nuxt site config 2025-05-01 22:31:58 +02:00
pnpm-lock.yaml chore: update dependencies and Nuxt site config 2025-05-01 22:31:58 +02:00
pnpm-workspace.yaml chore: update dependencies and Nuxt site config 2025-05-01 22:31:58 +02:00
README.md Initial commit 2025-04-29 00:47:06 +02:00
tsconfig.json Initial commit 2025-04-29 00:47:06 +02: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.