diff --git a/.gitignore b/.gitignore index eb638a53e..71bd9b9c2 100644 --- a/.gitignore +++ b/.gitignore @@ -52,7 +52,6 @@ BenchmarkDotNet.Artifacts/ project.lock.json project.fragment.lock.json artifacts/ -**/Properties/launchSettings.json # StyleCop StyleCopReport.xml @@ -60,7 +59,7 @@ StyleCopReport.xml # Files built by Visual Studio *_i.c *_p.c -*_i.h +*_h.h *.ilk *.meta *.obj @@ -221,7 +220,7 @@ ClientBin/ *.publishsettings orleans.codegen.cs -# Including strong name files can present a security risk +# Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) #*.snk @@ -240,6 +239,7 @@ Backup*/ UpgradeLog*.XML UpgradeLog*.htm ServiceFabricBackup/ +*.rptproj.bak # SQL Server files *.mdf @@ -316,7 +316,7 @@ __pycache__/ # OpenCover UI analysis results OpenCover/ -# Azure Stream Analytics local run output +# Azure Stream Analytics local run output ASALocalRun/ # MSBuild Binary and Structured Log @@ -325,12 +325,14 @@ ASALocalRun/ # NVidia Nsight GPU debugger configuration file *.nvuser -# MFractors (Xamarin productivity tool) working folder +# MFractors (Xamarin productivity tool) working folder .mfractor/ +# Local History for Visual Studio +.localhistory/ + # FilterLists Custom Ignores gs/Private.gs appsettings.development.json appsettings.production.json -src/FilterLists.Agent/appsettings.json src/FilterLists.Web/wwwroot/dist \ No newline at end of file diff --git a/src/FilterLists.Agent/appsettings.json b/src/FilterLists.Agent/appsettings.json new file mode 100644 index 000000000..d3f5ba20b --- /dev/null +++ b/src/FilterLists.Agent/appsettings.json @@ -0,0 +1,25 @@ +/* + WARNING - This file will be checked into source control. Do not change this file. + Use this as an example file only. + Use {env.EnvironmentName}.json as your configuration file as it will not be checked into source control. + {env.EnvironmentName} values : development, staging, production +*/ +{ + "ApplicationInsights": { + "InstrumentationKey": "InstrumentationKeyValue" + }, + "ConnectionStrings": { + "FilterListsConnection": "FilterListsConnectionValue" + }, + "DataDirectory": { + "Path": "..\\..\\data" + }, + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} \ No newline at end of file