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 04f2e29403 Refactor Layout and Styling in UserMenu, AppHeader, and Product Pages 3 weeks ago
.claude Implement Role Management Features and UI Enhancements 1 month ago
app Refactor Layout and Styling in UserMenu, AppHeader, and Product Pages 3 weeks ago
assets/css Refactor Cart UI to Enhance Responsiveness and User Experience 1 month ago
docs Add Detailed Role Documentation and Update References 1 month 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
scripts Enhance checkout flow with new components and validation 2 months ago
server Enhance Role-Based Visibility and Navigation Logic 1 month ago
tasks Complete Phase 6: Products - Implement product display functionality with API endpoints, UI components, and pages. Key features include role-based visibility, cart integration, and responsive design. All tasks for this phase are now marked as done, with a total of 10 tasks completed. Updated project documentation to reflect progress and completion date. 1 month ago
tests Implement Password Grant Flow for Authentication and Enhance User Experience 2 months ago
types Enhance CheckoutForm and Order components with user data integration 2 months ago
.dockerignore Init 2 months ago
.env.example Implement shopping cart functionality with UI components and API integration 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 Add Detailed Role Documentation and Update References 1 month 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 Implement shopping cart functionality with UI components and API integration 2 months ago
package.json Add Confetti Animation for Newly Added Tabs in AreaTabs Component 1 month ago
pnpm-lock.yaml Add Confetti Animation for Newly Added Tabs in AreaTabs Component 1 month ago
tailwind.config.ts Refactor Tailwind Configuration and Update Checkout Form UI 4 weeks 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.