Skip to content

No.1 做好設定 IDE Tool 及建立開發環境

wow890209 edited this page Jun 9, 2023 · 3 revisions

報告! 依據命令,執行以下步驟:

IntelliJ IDEA Setting

第一動!! 設定自動化引入套件

  1. 進入 IDE Settings 頁面
    • 快捷鍵: Ctrl + Alt + S
  2. 搜尋關鍵字 Auto Import
  3. 啟用在 Kotlin 欄位下的 Add unambiguous imports on the fly "Auto import package"

第二動!! 設定自動化存檔

  1. 進入 IDE Settings 頁面
  2. 搜尋關鍵字 Editor General on save
  3. 啟用在 On Save 欄位下的 Ensure every saved file ends with a line break "Auto ensure every saved file"

第三動!! 為專案設定 SDK

  1. 進入 IDE Project Structure 頁面
    • 快捷鍵: Ctrl + Alt + Shift + S
  2. 在側邊攔尋找 Project Settings -> Project
  3. 為專案設定 SDK 且所使用的 Java version 17 或是更高 "Java version"

第四動!! 設定運行時環境參數

  1. 在 WSA-Utopia-Discord-Bot 根目錄找到 Main.kt

    • Path: {Project folder}\WSA-Utopia-Discord-Bot\main\src\main\kotlin\tw\waterballsa\utopia\Main.kt
  2. 點擊 Modify Run Configuration "Modify run config"

  3. 在運行的設定檔Configuration頁籤中,在Environment variables中填入以下參數:

    BOT_TOKEN=<your_discord_bot_token>;
    CHATGPT_TOKEN=;
    DEPLOYMENT_ENV=beta;
    

    "Set env config"

稍息!! 完成任務!