elearning/frontend_management
Missez f26a94076c
All checks were successful
Build and Deploy Frontend Management to Dev Server / Build Frontend Management Docker Image (push) Successful in 46s
Build and Deploy Frontend Management to Dev Server / Deploy E-learning Frontend Management to Dev Server (push) Successful in 4s
Build and Deploy Frontend Management to Dev Server / Notify Deployment Status (push) Successful in 2s
feat: Introduce comprehensive course management features for admin, including recommended, pending, and detailed course views, and instructor course listing with a lesson preview component.
2026-02-20 14:33:08 +07:00
..
assets/css feat: initialize Nuxt.js frontend application with Docker setup, global styling, and authentication pages. 2026-02-05 13:43:16 +07:00
components/course feat: Introduce comprehensive course management features for admin, including recommended, pending, and detailed course views, and instructor course listing with a lesson preview component. 2026-02-20 14:33:08 +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: Introduce core admin and instructor dashboards with dedicated services, pages, and layouts. 2026-02-13 15:26:51 +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: Introduce comprehensive course management features for admin, including recommended, pending, and detailed course views, and instructor course listing with a lesson preview component. 2026-02-20 14:33:08 +07:00
plugins feat: del mock , crud add instructor , VerifyEmail 2026-02-03 11:55:31 +07:00
public 111 2026-01-19 15:24:07 +07:00
services feat: Introduce comprehensive course management features for admin, including recommended, pending, and detailed course views, and instructor course listing with a lesson preview component. 2026-02-20 14:33:08 +07:00
stores feat: Implement initial frontend for admin and instructor roles, including dashboards, course management, authentication, and core services. 2026-02-06 14:58:41 +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
.dockerignore feat: initialize Nuxt.js frontend application with Docker setup, global styling, and authentication pages. 2026-02-05 13:43:16 +07:00
.env.example init frontend_management 2026-01-12 16:49:58 +07:00
.gitignore feat: Implement course instructor management UI with search, add, set primary, and remove instructor capabilities. 2026-02-05 16:39:58 +07:00
app.vue feat: Implement course instructor management UI with search, add, set primary, and remove instructor capabilities. 2026-02-05 16:39:58 +07:00
docker-compose.yml feat: Implement course instructor management UI with search, add, set primary, and remove instructor capabilities. 2026-02-05 16:39:58 +07:00
Dockerfile feat: Implement admin user and course management, instructor course and quiz management 2026-02-11 17:03:43 +07:00
nuxt.config.ts feat: del mock , crud add instructor , VerifyEmail 2026-02-03 11:55:31 +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.