No description
Find a file
2026-04-28 01:37:42 +01:00
app enhance lesson generation and focus mode functionality 2026-04-28 01:37:42 +01:00
data initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
drizzle initialize project with basic structure and dependencies 2026-04-28 00:53:34 +01:00
public initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
scripts initialize project with basic structure and dependencies 2026-04-27 22:26:40 +01:00
server enhance lesson generation and focus mode functionality 2026-04-28 01:37:42 +01:00
uploads initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
.env.example initialize project with basic structure and dependencies 2026-04-27 22:26:40 +01:00
.gitignore initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
docker-compose.yml initialize project with basic structure and dependencies 2026-04-27 21:10:17 +01:00
Dockerfile initialize project with basic structure and dependencies 2026-04-27 21:30:38 +01:00
drizzle.config.ts initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
nuxt.config.ts initialize project with basic structure and dependencies 2026-04-27 21:30:38 +01:00
package-lock.json initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
package.json initialize project with basic structure and dependencies 2026-04-27 22:26:40 +01:00
README.md initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01:00
tsconfig.json initialize project with basic structure and dependencies 2026-04-27 20:56:49 +01: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.