WEB DEV TEAM - BACKEND (ELABS)
      • 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 No publishing access yet

      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.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      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
    • Make a copy
    • 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 Make a copy 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 No publishing access yet

    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.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    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
    # API - Listing ## Deployment https://api-elabskiit.herokuapp.com/ ## APIs - <strong>POST `/course/new` - Add new Course<br></strong> <strong>Schema</strong><br> ```javascript { name : __NAME_OF_THE_COURSE__, desc : __DESCRIPTION_ABOUT_THE_COURSE__, totalSeats : __SEATS_IN_TOTAL__, year : __YEAR_FOR_THE_COURSE__ } ``` <strong>Status codes and errors</strong> - 201 - Data saved - 500 - Database unresponsive <br> ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - 406 - Data invalid/incorrect ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, } ``` <strong>Special Notes</strong><br> - `year` should be greater than present year - `totalSeats` should be greater than 0 (zero) - There should not be any empty field <strong>Example</strong><br> Request ```json { "name": "Cloud", "desc": "Cloud Computing", "totalSeats": 100, "year": 2021 } ``` Return ```json { "data": { "totalSeats": 100, "presentSeats": 100, "year": "2021", "classes": [], "_id": "60d33d0e577a0e46141e5276", "name": "Cloud", "desc": "Cloud Computing", "__v": 0 } } ``` - <strong>GET `/course` - Get all courses<br></strong> <strong>Special Notes</strong><br> - Query can be added too - `/course?year=__YEAR__` - to retrive all the courses of a particular year <strong>Status codes and errors</strong> - 200 - OK (Data recieved) ```javascript { courses:[{ { __course1_details__ }, { __course2_details__ } }] } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` <strong>Example</strong><br> Request GET `/course?year=2021` Result ```json { "courses": [ { "totalSeats": 100, "presentSeats": 97, "year": "2021", "classes": [ "60d2d56f7b88912ae46d51db" ], "_id": "60d2d0727b88912ae46d51af", "name": "AR", "desc": "Argumentive Reality", "__v": 0 }, { __COURSE_2_DETAILS__ } ... ] } ``` - <strong>GET `/course/:courseid` - Get the particular courses<br></strong> <strong>Special Notes</strong><br> - `courseid` param should be a valid courseId <strong>Status codes and errors</strong> - 200 - OK (data recieved) ```javascript { course: { __COURSE_DETAILS__ } } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` <strong>Example</strong><br> Request GET `/course/60d2d0727b88912ae46d51af` Return ```json { "course": { "totalSeats": 100, "presentSeats": 97, "year": "2021", "classes": ["60d2d56f7b88912ae46d51db"], "_id": "60d2d0727b88912ae46d51af", "name": "AR", "desc": "Argumentive Reality", "__v": 0 } } ``` - <strong>POST `/team/new` - Add new Member<br></strong> <strong>Schema</strong><br> ```javascript { name : __MEMBER_NAME__, domain : __MEMBER_DOMAIN__, isActive : __ACTIVE_OR_ALUMNI__, photo : __PHOTO_URL__, email : __EMAIL_ID__, github : __GITHUB_PROFILE_LINK__, linkedin : __LINKEDIN_PROFILE_LINK__, testimonial : __ALUMNI_EXPERIENCE__ } ``` <strong>Special Notes</strong><br> - `name, domain, isActive, photo ,email` are mandatory fields - `github, linkedin, testimonial` are optional - `email` should be a kiit email - `photo` is an URL from firebase <strong>Status codes and errors</strong> - 201 - Data saved successfully ```javascript { data: { __DETAILS_SAVED__ } } ``` - 406 - Invalid/incorrect data and/or email not kiit email ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` <strong>Example</strong><br> Request POST `/team/new` ```json { "name": "Avi Mishra", "domain": "App Development", "isActive": true, "photo": "https://firebasestorage.googleapis.com/v0/b/e-labs-550aa.appspot.com/o/team%2F01_avi.jpg?alt=media&token=2e8b6851-373f-46f0-9dd6-ba8e6aa7d79d", "email": "1828058@kiit.ac.in", "linkedin": "https://in.linkedin.com/in/avimishra18" } ``` Return ```json { "data": { "_id": "60d42544e3dd241f3c2637cf", "name": "Avi Mishra", "domain": "App Development", "photo": "https://firebasestorage.googleapis.com/v0/b/e-labs-550aa.appspot.com/o/team%2F01_avi.jpg?alt=media&token=2e8b6851-373f-46f0-9dd6-ba8e6aa7d79d", "email": "1828058@kiit.ac.in", "isActive": true, "linkedin": "https://in.linkedin.com/in/avimishra18", "__v": 0 } } ``` - <strong>GET `/team` - Get all members<br></strong> <strong>Special Notes</strong><br> - Queries can be added - `/team?domain=__DOMAIN_NAME__` - to get all the members of a particular domain (Regular expression is allowed) - `/team?name=__MEMBER_NAME__` - to get the particular member (Regular expression is allowed) - `/team?roll=__MEMBER_ROLL__` - to get the particular member (only the roll number and Regular expression is allowed) <strong>Status codes and errors</strong> - 200 - OK (Data recieved) ```javascript { data: [ { __MEMBER_1__ }, { __MEMBER_2__ }, ... ] } ``` - 404 - Member not found ```javascript { error: 'no members found', errorOccured: 'memebers', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` <strong>Example</strong><br> Request GET `/team` Return ```json { "data": [ { "_id": "60d42544e3dd241f3c2637cf", "name": "Avi Mishra", "domain": "App Development", "photo": "https://firebasestorage.googleapis.com/v0/b/e-labs-550aa.appspot.com/o/team%2F01_avi.jpg?alt=media&token=2e8b6851-373f-46f0-9dd6-ba8e6aa7d79d", "email": "1828058@kiit.ac.in", "isActive": true, "linkedin": "https://in.linkedin.com/in/avimishra18", "__v": 0 }, ... ] } ``` - <strong>PATCH `/team/:memberid` - Update a team member details<br></strong> <strong>Schema</strong><br> ```javascript { name : __MEMBER_NAME__, domain : __MEMBER_DOMAIN__, isActive : __ACTIVE_OR_ALUMNI__, photo : __PHOTO_URL__, email : __EMAIL_ID__, github : __GITHUB_PROFILE_LINK__, linkedin : __LINKEDIN_PROFILE_LINK__, testimonial : __ALUMNI_EXPERIENCE__ } ``` <strong>Special Notes</strong><br> - can contain all the above mentioned fields or just the required fields <strong>Status codes and errors</strong> - 201 - Updated successfully ```javascript { isUpdated: true } ``` - 406 - email not valid, not a kiit email id ```javascript { error: `email invalid, not a kiit email`, errorOccured: `email`, } ``` - 404 - Member not found ```javascript { error: 'member not found', errorOccured: 'member', } ``` - Member could not be updated ```javascript { error: 'member could not be updated', errorOccured: 'error', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>POST `/login` - Check the deviceId and roll<br></strong> <strong>Schema</strong><br> ```javascript { roll: __ROLL_NUMBER__, deviceId : __DEVICEID__ } ``` <strong>Status codes and errors</strong> - 200 - OK (Login successful) ```javascript { data: true } ``` - 406 - Roll number is invalid (Not kiit roll number) ```javascript { error: `roll invalid`, errorOccured: `roll`, } ``` - 404 - Roll number not found or DeviceId not registered ```javascript { error: `roll not found`, errorOccured: `roll`, } ``` ```javascript { error: 'device not registered', errorOccured: 'device', } ``` - 401 - DeviceId not a match ```javascript { data: false, error: 'deviceid not a match', errorOccured: 'deviceid' } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>GET `/login/:deviceid` - to check whether</strong><br> <strong>Special Notes</strong><br> - `deviceid` is the parameter - 200 status returns data in the form of array of objects <strong>Status codes and errors</strong> - 200 - (OK) ```javascript { data: [__DETAILS_OF_THE_USER_WITH_THAT_ROLL__] } ``` - 404 - deviceId not registered/ deviceId not found ```javascript { error: 'device not registered', errorOccured: 'device', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>POST `/device` - Register the deviceId and roll<br></strong> <strong>Schema</strong><br> ```javascript { roll: __ROLL_NUMBER__, deviceId : __DEVICEID__ } ``` <strong>Status codes and errors</strong> - 201 -OK (Data saved successfully) ```javascript { data: [__DETAILS_OF_THE_USER_WITH_THAT_ROLL__] } ``` - 406 - Roll number not correct or Kiit roll number not added ```javascript { error: `roll not correct`, errorOccured: `roll`, } ``` - Roll number or deviceId not entered (undefined) ```javascript { error: `__ROLL/DEVICID__ invalid`, errorOccured: `__ROLL/DEVICID__ `, } ``` - Device already registered ```javascript { error: 'device already registered', errorOccured: 'device', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>GET `/user/roll/:roll` - Get the user with roll<br></strong> <strong>Special Notes</strong><br> - `:roll` - roll number parameter to enter a valid kiit roll number - Query can be added - `semester` can be added Example : `/user/roll/1928056?semester=3rd` <strong>Status codes and errors</strong> - 200 - User found ```javascript { data: { _USER_DATA__ } } ``` - 404 - User account not found ```javascript { error: 'account not found', errorOccured: 'account', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` <strong>Example</strong><br> Request GET `/user/roll/1928087` Return ```json { "data": [ { "presentClasses": [], "_id": "60d2d35c7b88912ae46d51cd", "roll": "1928087", "name": "Stefan Salvatore", "semester": "3rd", "contact": "6690340023", "gender": "Male", "branch": "CSSE", "course": "60d2d1127b88912ae46d51b1", "__v": 0 } ] } ``` - <strong>GET `/user/id/:userId` - Get the student with that userId<br></strong> <strong>Special Notes</strong><br> - `:userId` is a parameter for UserId <strong>Status codes and errors</strong> - 200 - User found ```javascript { data: { _USER_DATA__ } } ``` - 404 - User account not found ```javascript { error: 'account not found', errorOccured: 'account', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` <strong>Example</strong><br> Request GET `/user/id/60d2d35c7b88912ae46d51cd` Return ```json { "data": [ { "presentClasses": [], "_id": "60d2d35c7b88912ae46d51cd", "roll": "1928087", "name": "Stefan Salvatore", "semester": "3rd", "contact": "6690340023", "gender": "Male", "branch": "CSSE", "course": "60d2d1127b88912ae46d51b1", "__v": 0 } ] } ``` - <strong>POST `/class/create` - Create a new class<br></strong> <strong>Schema</strong><br> ```javascript { courseId: __COURSE_ID__ } ``` <strong>Special Notes</strong><br> - `courseId` must be defined in the body <strong>Status codes and errors</strong> - 200 - OK (class created) ```javascript { data: { __SAVED_DATA__ } } ``` - 406 - CourseId not entered ```javascript { error: 'courseId not entered', errorOccured: 'courseId', } ``` - 404 - Course not found ```javascript { error: 'course not found', errorOccured: 'course', } ``` - No users under that course ```javascript { error: 'no users found', errorOccured: 'users', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>DELETE `/class/:classid` - Delete class<br></strong> <strong>Special Notes</strong><br> - `:classid` : classid must be valid <strong>Status codes and errors</strong> - 200 - OK (class deleted) ```javascript { data: 'deleted', studentUpdate: __OUTCOME__, } ``` - 404 - Class not found ```javascript { error: 'Class not found', errorOccured: 'class', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>POST `/register` - registration<br></strong> <strong>Schema</strong><br> ```javascript { roll: __ROLL__, name: __NAME__, semester: __SEMESTER__, contact: __CONTACT___, gender: __GENDER__, branch: __BRANCH__, course: __COURSEID__, } ``` <strong>Special Notes</strong><br> - `roll` should be valid kiit roll number - valid `semesters` are `1st, 2nd, 3rd, 4th, 5th, 6th, 7th, 8th` (case sensitive) - valid `gender` are `Male, Female, Others` (case sensitive) - `contact` number is 10-digit mobile number - valid `branch` are `ETC, EEE, EE, ECS, EI, MECHANICAL, CIVIL, CS, IT, CSSE, CSCE,` - `course` is courseID and should be obtained from get request for courses - No need for precheck for seats left. This endpoint returns an error (discussed below) if there is no seat left for the selected course <strong>Status codes and errors</strong> - 201 - Data added succesfully (user added) ```javascript { data: { __DATA_SAVED__ } } ``` - 406 - Data invalid or not entered ```javascript { error: '__ERROR__ invalid' errorOccured: '__ERROR__' } ``` - Data not entered according to validation ```javascript { error: '__ERROR__ not correct' errorOccured: '__ERROR__' } ``` - 409 - Account already present ```javascript { error: 'account already registered', errorOccured: 'account', } ``` - 402 - Seat are full for that course ```javascript { error: 'seats full for selected course', errorOccured: 'seats', } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ``` - <strong>POST `/attendance` - Mark Attendance<br></strong> <strong>Schema</strong><br> ```javascript { attendance: [ { classId: __CLASS_ID__, studentId: __STUDENT_ID__, }, { classId: __CLASS_ID, studentId : __STUDENT_ID__ }, ... ] } ``` <strong>Special Notes</strong><br> - `attendance` is an array of object containing classId and studentId. Even if there is only one attendance to mark it should be passed in an array. <br> Example ```javascript { attendance: [ { classId: __CLASS_ID, studentId: __STUDENT_ID__, }, ] } ``` <strong>Status codes and errors</strong> - 201 - Marked (details of each student can be of any form discussed below) ```javascript { data: [ { studentId: __USER_ID__, classId: __CLASS_ID__, isAttendanceGiven: false, error: 'class not found', }, { studentId: __USER_ID__ , classId: __CLASS_ID__, isAttendanceGiven: false, error: 'student already marked as present', }, { studentId: __USER_ID__, classId: __CLASS_ID__, isAttendanceGiven: false, error: 'student not found', }, { studentId: __USER_ID__, classId: __CLASS_ID__, isAttendanceGiven: false, error: 'student account error', }, { studentId: __USER_ID__, classId: __CLASS_ID__, isAttendanceGiven: true, }, ... ] } ``` - 500 - Database Unresponsive (No data) ```javascript { error : __ERROR_DESC__, errorOccured: __ERROR_OCCURED_AT__, errorMessage : __DETAILED_ERROR_REPORT__ } ```

    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
    Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    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