Frontend for Gorb, the chat app! https://gorb.app/
Find a file
SauceyRed 3e4e3e0ce8
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful
Merge pull request 'More improvements to context menu' (#69) from context-menu-ban-kick into main
Reviewed-on: #69
Reviewed-by: Twig <git@beaver.mom>
2025-08-16 14:08:33 +00:00
.vscode Initial commit 2025-04-29 00:47:06 +02:00
.woodpecker ci: only run on push 2025-07-22 18:55:57 +02:00
classes chore: remove unused function? 2025-08-11 22:29:23 +02:00
components feat: add Confirmation modal to MemberEntry.vue 2025-08-16 15:50:11 +02:00
composables Merge branch 'main' into context-menu-ban-kick 2025-08-15 20:01:28 +02:00
layouts refactor: move sidebar to own component 2025-08-13 20:52:10 +02:00
middleware Merge remote-tracking branch 'origin/main' into sort-members-list 2025-07-18 07:34:13 +02:00
pages feat: move initialization of logged-in user member state variable to channelId page 2025-08-16 15:05:07 +02:00
public Merge remote-tracking branch 'origin/main' into modal-polish 2025-08-15 14:20:33 +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
types feat: replace context menu items splicing with implementation of context menu item sections 2025-08-16 14:25:11 +02:00
utils fix: kick and ban context menu items showing in wrong order due to use of splicing instead of pushing in createMemberContextMenuItems 2025-08-16 15:52:00 +02:00
.gitignore Initial commit 2025-04-29 00:47:06 +02:00
app.vue feat: make custom context menu imitate browser context menu behavior 2025-08-16 15:46:54 +02:00
Dockerfile ci: use adduser command instead of useradd 2025-05-05 13:22:39 +02:00
entrypoint.sh ci: fix node path 2025-05-26 23:14:34 +02:00
error.vue feat: create custom error page, wip 2025-05-28 02:29:44 +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 feat: start implementing styles and layouts 2025-08-05 01:17:07 +02:00
package.json feat: add xxhash-wasm library 2025-07-13 18:15:48 +02:00
pnpm-lock.yaml feat: add xxhash-wasm library 2025-07-13 18:15:48 +02:00
pnpm-workspace.yaml chore: update dependencies and Nuxt site config 2025-05-01 22:31:58 +02:00
README.md chore: CI thingy 2025-06-23 21:50:40 +02:00
tsconfig.json Initial commit 2025-04-29 00:47:06 +02:00
types.d.ts feat: add stats interface 2025-05-26 22:49:43 +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.