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 749d5401c6 Update Claude Code local settings 2 months ago
.claude Update Claude Code local settings 2 months ago
.playwright-mcp Init 2 months ago
app Enhance styling with updated Tailwind config and CSS 2 months ago
assets/css Enhance styling with updated Tailwind config and CSS 2 months ago
docs Add critical CSS styles for layout and typography, enhance button styles with rounded corners, and introduce a progress card component with Safrangold accent border. 2 months ago
locales Init 2 months ago
public Add Makerspace annual pass assets 2 months ago
resources Add Makerspace annual pass assets 2 months ago
server Add server infrastructure with API routes and middleware 2 months ago
tasks Update task tracking for database phase progress 2 months ago
.dockerignore Init 2 months ago
.env.example Add internal styleguide page with HTTP Basic Auth 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 Init 2 months ago
README.md Init 2 months ago
components.json Init 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 styleguide page with HTTP Basic Auth 2 months ago
package.json Add Drizzle ORM setup and database configuration 2 months ago
pnpm-lock.yaml Add Drizzle ORM setup and database configuration 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.