You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Bastian Masanek 14fc293ebe Refactor AreaTabs component to correct product area labels and routing logic 2 months ago
.claude Update settings.local.json to add database migration command for Playwright integration 2 months ago
app Refactor AreaTabs component to correct product area labels and routing logic 2 months ago
assets/css Enhance FormMessage and styleguide for improved accessibility and user feedback 2 months ago
docs Add automatic role assignment for new and existing users 2 months ago
i18n/locales Implement authentication phase with Cidaas OAuth2 integration 2 months ago
locales Implement authentication phase with Cidaas OAuth2 integration 2 months ago
middleware Implement authentication phase with Cidaas OAuth2 integration 2 months ago
public Add Makerspace annual pass assets 2 months ago
resources Add Makerspace annual pass assets 2 months ago
server Refactor roles management to use role code as primary key 2 months ago
tasks Implement Password Grant Flow for Authentication and Enhance User Experience 2 months ago
tests Implement Password Grant Flow for Authentication and Enhance User Experience 2 months ago
.dockerignore Init 2 months ago
.env.example Refactor session encryption variable names for consistency 2 months ago
.gitignore Update .gitignore to exclude Playwright MCP directory 2 months ago
.prettierignore Init 2 months ago
.prettierrc.json Init 2 months ago
CLAUDE.md Update CLAUDE.md to clarify role definitions and database schema 2 months ago
README.md Init 2 months ago
components.json Implement authentication phase with Cidaas OAuth2 integration 2 months ago
docker-compose.dev.yml Init 2 months ago
drizzle.config.ts Add Drizzle ORM setup and database configuration 2 months ago
eslint.config.mjs Init 2 months ago
nuxt.config.ts Refactor session encryption variable names for consistency 2 months ago
package.json Add Docker management scripts to package.json 2 months ago
pnpm-lock.yaml Add product detail and listing pages with API integration 2 months ago
tailwind.config.ts Enhance navigation and UI components for improved user experience 2 months ago
tsconfig.json Init 2 months ago

README.md

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.