- 先到微軟官網(https://dotnet.microsoft.com/download ),下載 .Net 5.0的SDK
- 下載SQLServer(https://www.microsoft.com/zh-tw/sql-server/sql-server-downloads ,可選Express版或開發版)
- 進入想要存放的資料夾位置
cd yourPath //yourPath改成你的資料夾路徑
- 從Github將專案Clone到本機端
git clone https://github.com/goodness090807/EcommerceWebApi.git
- 在跟appsettings.json同目錄底下,新增 appsettings.Development.json 檔案 (開發專用,如果不是開發直接使用appsettings.json就可以了)
- 打開appsettings.json和appsettings.Development.json,並將appsettings.json的資料複製到appsettings.Development.json
-
在DefaultConnection設定資訊,Server放入資料庫(SqlServer)的伺服器名稱,Database可以隨意取自己想要的
-
在JwtSettings設定Issuer和Tokenkey
Issuer為發行者,可設定自己的網址或是名字。
Tokenkey為用來做hash的Key,可隨意設置。
- 開啟命令提示字元,並將執行位置設定在與Controller相同位置
cd yourPath\EcommerceWebApi\EcommerceWebApi
- 執行專案
dotnet run
-
預設API文件位置
-
成功建置的畫面