# hangfire-dotnet3.1 **Repository Path**: achangleilei/hangfire-dotnet3.1 ## Basic Information - **Project Name**: hangfire-dotnet3.1 - **Description**: hangfire with asp.net core (.net core 3.1) - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 6 - **Created**: 2023-01-14 - **Last Updated**: 2023-01-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # hangfire-dotnet3 hangfire template solution with .net sdk 3.0 ## 使い方 **docker-composeは動きません**。 ### mongoサーバーの起動 mongoサーバーをインストールして、起動させてください。 ### クライアントの起動 `Hangfire Dashboard` を見るために クライアント を起動させます。 ```cmd cd client dotnet run . ``` [http://localhost:5000/hangfire](http://localhost:5000/hangfire) からダッシュボードにアクセスできます。 ### サーバーの起動 ジョブを実行する `Hangfire Server` を起動させます。 ```cmd cd server dotnet run . ``` 2つぐらいコマンドプロンプトを開いて実行すると動きがわかりやすいです。 ### キューする主体の起動 **本来はクライアントで実施すべきですが、別アプリのappでキューします**。 ```cmd