Skip to content

Dilinnat/TaskManager

Folders and files

NameName
Last commit message
Last commit date
Dec 19, 2024
Oct 4, 2024
Oct 4, 2024
Nov 28, 2024
Oct 10, 2024
Oct 4, 2024
Dec 4, 2024
Nov 18, 2024
Nov 30, 2024
Oct 11, 2024
Oct 10, 2024
Oct 10, 2024

Repository files navigation

TaskManager

This repo is API for https://github.com/MFGod/aera.git

Building

Source code

To run project clone the repository:

git clone https://github.com/TWR-pixel/TaskManager.git

cd TaskManager

Read this docs to get application code for mail.yandex.ru https://yandex.ru/support/id/ru/authorization/app-passwords Then set this user secrets variables:

To create google client secret and client id (https://console.cloud.google.com/)

dotnet user-secrets set "Google:ClientSecret" "YourClientSecret"
dotnet user-secrets set "Google:ClientId" "YourClientId"
dotnet user-secrets set "Google:ServerRedirectUri" "https://localhost:7049/api/oauth/google-callback"
dotnet user-secrets set "Google:ClientRedirectUri" "http://localhost:3000"
dotnet user-secrets set "TmMailerooApiKey" "YourApiKey"
dotnet user-secrets set "TmJwtSecretKey" "AWOIEJFPOAIWEJFJEWPIOFJWPEOIJFFOIJWEPOIFJWEOPIJFIO"
dotnet user-secrets set "TmEmailApiKey" "YouEmailApiKey"

For confirmation by mail to work, insert your email address here:

{
  "EmailSenderOptions": {
    "EmailFrom": "<COPY-YOUR-ADDRESS-HERE>",
    "Port": "465",
    "Host": "smtp.yandex.ru"
  }
}

Then run:

dotnet restore TaskManager.sln

Then build all projects:

dotnet build TaskManager.sln

To run API project:

dotnet run --project src/PublicApi/TaskManager.PublicApi/TaskManager.PublicApi.csproj

Docker

docker compose-up