elearning/frontend_management
2026-01-30 11:48:13 +07:00
..
assets/css init frontend_management 2026-01-12 16:49:58 +07:00
composables feat: Implement authentication system with token refresh and initial instructor dashboard with course management. 2026-01-23 09:53:44 +07:00
layouts feat: Add initial frontend setup including authentication, instructor, and admin course management modules. 2026-01-28 13:39:00 +07:00
middleware feat: Implement user authentication, admin user management, and role-based access control. 2026-01-16 16:37:16 +07:00
pages feat: Implement instructor course and lesson management with dedicated views for quizzes, videos, and admin categories. 2026-01-30 11:48:13 +07:00
plugins feat: Implement authentication system with token refresh and initial instructor dashboard with course management. 2026-01-23 09:53:44 +07:00
public 111 2026-01-19 15:24:07 +07:00
services feat: Implement instructor course and lesson management with dedicated views for quizzes, videos, and admin categories. 2026-01-30 11:48:13 +07:00
stores feat: Implement instructor module with course management pages and API services. 2026-01-29 09:47:49 +07:00
utils feat: Implement authentication system with token refresh and initial instructor dashboard with course management. 2026-01-23 09:53:44 +07:00
.env.example init frontend_management 2026-01-12 16:49:58 +07:00
.gitignore init frontend_management 2026-01-12 16:49:58 +07:00
app.vue init frontend_management 2026-01-12 16:49:58 +07:00
nuxt.config.ts login with api 2026-01-14 13:58:25 +07:00
package-lock.json feat: Add initial frontend setup including authentication, instructor, and admin course management modules. 2026-01-28 13:39:00 +07:00
package.json feat: Add initial frontend setup including authentication, instructor, and admin course management modules. 2026-01-28 13:39:00 +07:00
README.md init frontend_management 2026-01-12 16:49:58 +07:00
tailwind.config.js init frontend_management 2026-01-12 16:49:58 +07:00
tsconfig.json init frontend_management 2026-01-12 16:49:58 +07: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.