Skip to content

Trivial web app to track gitlab popular MR comments. Server web-api part

Notifications You must be signed in to change notification settings

bodynar/MAS.GitlabComments.Api

Repository files navigation

About

Trivial web app to track gitlab popular MR comments. Web api part

Description

tbd

Related links

Installation

Requirements

tbd

  • dotnet
  • MSSQL server
  • (optional) Internet Information Services (IIS)

First-time installation

  1. Download the latest the release from release page

If no zip file with app content provided - download source code, build & publish WebApp via dotnet

  1. Create a database on mssql server
  2. Update DefaultConnection setting in appsettings.json file to match your database configuration

Example: Server=MyServer;Database=GitlabComments;User Id=user;Password=password;MultipleActiveResultSets=true

  1. Configure the rest of the application settings in the appsettings.json file as you wish
  2. Run app
  3. To use client app proceed with Client app installation guide

Update

  • Before updating app make sure that app is stopped.
  • To update your app just follow steps 1 & 5.
  • On step 1 you need to replace existed files, except appsettings.json
  • [ONLY IF NO INSTRUCTIONS PROVIDED IN RELEASE] Compare newest version of appsettings.json and your version, add new lines to your settings and save the file.

Related links