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 e7939b9045 Update experimenta button documentation to reflect component name change 2 months ago
.claude Enhance user communication and improve UI components 2 months ago
.playwright-mcp Init 2 months ago
app Refactor secure connection handling in LoginForm component 2 months ago
assets/css Enhance FormMessage and styleguide for improved accessibility and user feedback 2 months ago
docs Update experimenta button documentation to reflect component name change 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 login error handling and improve user feedback 2 months ago
tasks Implement authentication phase with Cidaas OAuth2 integration 2 months ago
.dockerignore Init 2 months ago
.env.example Add internal authentication configuration and middleware support 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 Enhance user communication and improve UI components 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 Add internal authentication configuration and middleware support 2 months ago
package.json Implement authentication phase with Cidaas OAuth2 integration 2 months ago
pnpm-lock.yaml Implement authentication phase with Cidaas OAuth2 integration 2 months ago
tailwind.config.ts Enhance styling with updated Tailwind config and CSS 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.