UniCourse
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    --- tags: UniCourse, Overview --- # UniCourse 課程匯入指南 :::info 發現貴校課程沒有收錄在 UniCourse 裡面嗎? 歡迎透過 course-packer@unicourse.tw 聯絡我們 或是加入 Discord Server 參與討論(連結於目錄) ::: > [ToC] ## Overview 首先,請讓我代表 UniCourse 團隊致上謝意。 UniCourse 是一個以學生為核心的開源平台,我們需要社群夥伴的幫助以完善課程資料,而你的任何貢獻都將使 UniCourse 社群變得越來越好。 :::info 在開始之前,請你先完成以下要求: 1. 加入 [UniCourse 的 Discord 伺服器](https://discord.gg/9avZ4rrTWZ) 2. 安裝好 [UniCourse CLI](https://github.com/UniCourse-TW/Backend/tree/main/packages/cli#readme) 3. 稍微理解 [JSON 的格式](https://developer.mozilla.org/zh-TW/docs/Learn/JavaScript/Objects/JSON) 4. 擁有具權限的 UniCourse 帳號(請在 Discord 上聯絡我們) <details> <summary>如何安裝 UniCourse CLI?</summary> 你可以透過以下指令安裝 `pnpm` 以及 `unicourse`: **macOS & Linux** ```bash curl -fsSL https://get.pnpm.io/install.sh | sh - pnpm i -g @unicourse-tw/cli ``` **Windows** ```powershell iwr https://get.pnpm.io/install.ps1 -useb | iex pnpm i -g @unicourse-tw/cli ``` [你可能想知道:安裝 pnpm 的詳細資訊](https://pnpm.io/installation) </details> ::: ## Course Pack 是什麼? Course Pack 是具有特定格式的 JSON 檔案,作為表示「課程」、「教師」、「學程」、「提供者」與它們之間關係的序列化數據。 :::spoiler 範例 ```json { "$schema": "https://esm.sh/course-pack/schema.json", "teachers": [ { "id": "teacher-1", "name": "Mr. Jacob" }, { "id": "teacher-2", "name": "Mr. Sky" } ], "programs": [ { "id": "program-1", "name": "Program No.1" }, { "id": "program-2", "name": "Program No.2" } ], "entities": [ { "name": "University of UniCourse", "courses": [], "children": [ { "name": "College of Arts", "courses": [ { "id": "2022-winter-1234", "name": "Introduction to Art", "description": "This course is an introduction to art.", "code": "AG1234", "year": 2022, "term": 2, "type": "Compulsory", "credit": 3, "teachers": [ "teacher-2" ], "programs": [ "program-1", "program-2" ], "prerequisites": [] }, { "id": "2022-winter-5678", "name": "Art and Artificial Intelligence", "description": "Artificial intelligence is a hot topic in the world today. This course will introduce you to the basics of AI and how it is used in art.", "code": "AG5678", "year": 2022, "term": 2, "type": "Elective", "credit": 3, "teachers": [ "teacher-1" ], "programs": [ "program-1" ], "prerequisites": [] } ], "children": [ { "name": "Department of Western Art", "courses": [ { "id": "2022-winter-4321", "name": "Basic Painting", "description": "This course is an introduction to basic painting techniques.", "code": "AW4321", "year": 2022, "term": 2, "type": "Compulsory", "credit": 3, "teachers": [ "teacher-2" ], "programs": [ "program-1", "program-2" ] } ], "children": [] } ] }, { "name": "College of Science and Engineering", "courses": [], "children": [ { "name": "Department of Computer Science", "courses": [ { "id": "2022-winter-9876", "name": "Computer Programming", "description": "This course introduces students to the basics of computer programming. We will use the C programming language to learn various concepts, including variables, functions, loops, and pointers.", "code": "CS9876", "year": 2022, "term": 2, "type": "Compulsory", "credit": 3, "teachers": [ "teacher-1" ], "programs": [ "program-2" ] } ], "children": [] } ] } ] } ] } ``` ::: 稍微大的範例:[師大 108-1 ~ 111-1 的 Course Pack](https://github.com/JacobLinCool/NTNU-Course-Crawler/releases/tag/20221106) Schema Spec: [JSON Schema](https://esm.sh/course-pack/schema.json) ## 怎麼將課程資料打包成 Course Pack? 任何程式語言都可以將課程資料打包成 Course Pack,只需產生的 JSON 符合格式即可。 我們建議你在直接使用物件的名稱作為 `id`(Course Pack 中的唯一識別符),以利匯入時與系統上已經存有的相同物件合併。 :::info 目前我們只允許單次匯入小於 **100 MB** 的檔案,如需匯入大量資料,建議一學期一個檔案,分批匯入,相同 `id` 的物件將於遠端自動合併(需指定 `scope`,詳見下章)。 ::: 此外,適用於 JavaScript / TypeScript 的 [course-pack](https://www.npmjs.com/package/course-pack) package 提供相關類型的型別檢查。 你無需擔心匯入時格式錯誤,UniCourse CLI 會在匯入前檢查格式。 ## 如何匯入 Course Pack 到 UniCourse 裡? 首先,你需要登入 UniCourse CLI: ```bash unicourse login --server https://api.unicourse.tw <username> ``` UniCourse CLI 會提示你輸入你的密碼,再按下 Enter 登入。 接著便可匯入 Course Pack: ```bash unicourse import --scope <entity-id> <filename> ``` 如果檔案格式正確的話,等待幾分鐘便可完成上傳與匯入。

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully