start-dev
Start EduHub development environment with Docker. Use when the user asks to start dev server, run locally, start development, or set up the environment.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Start EduHub development environment with Docker. Use when the user asks to start dev server, run locally, start development, or set up the environment.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Work with Pencil .pen design files via the Pencil MCP (batch_design, variables, guidelines). Use when creating or editing .pen files, exploring UI layouts in Pencil, generating wireframes for EduHub, or when the user mentions Pencil, .pen, or the highagency Pencil extension.
Inspect UI via cursor-ide-browser (Cursor Browser tab); fall back to user-playwright if internal browser MCP is unavailable. Use for @Browser, open tab, layout checks, localhost — or when user explicitly asks for Playwright.
Use this skill to generate well-branded interfaces and assets for EduHub by opencampus.sh, either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Draft and review EduHub commit messages using the repository's conventional-commit and semantic-release workflow. Use when writing commit messages, choosing feat vs fix vs chore, deciding whether a body is needed, preparing merge commit messages, or explaining release impact.
Create a GitHub issue on eduhub-org/eduhub and add it to the "EduHub Development" project board with a chosen Status (Backlog / Todo / In Progress / Done). Use when the user asks to "create an issue", "file a ticket", "add to backlog", or otherwise wants a new issue tracked on the project board.
Create and review EduHub Hasura schema migrations. Use when adding tables, columns, constraints, relationships, or other database schema changes, and when coordinating the required metadata, query, type-generation, and function follow-up steps.
| name | start-dev |
| description | Start EduHub development environment with Docker. Use when the user asks to start dev server, run locally, start development, or set up the environment. |
# From project root
docker compose up
This starts all services:
# Start specific services
docker compose up frontend-nx hasura
# Start in background
docker compose up -d
# View logs for specific service
docker compose logs -f frontend-nx
| Service | Port | Description |
|---|---|---|
| frontend-nx | 5000 | Next.js app |
| hasura | 8080 | GraphQL API |
| keycloak | 28080 | Authentication |
| db_hasura | 5432 | PostgreSQL |
| node_functions | 42000-42024 | Serverless functions |
| python_functions | 42025-42026 | Python functions |
docker compose up --build
docker compose down -v
docker compose up
docker compose down
Run locally for migrations (not in Docker):
cd backend
hasura console --admin-secret myadminsecretkey