diff --git a/.gitignore b/.gitignore index 5f28270..284b1e6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,135 @@ - \ No newline at end of file +# Visual Studio +.vscode/ +.vs/ +.vscode/* + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (Mono Auto Generated) +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Uncomment if you have tasks that create the project's static files in wwwroot/dist +# wwwroot/dist/ + +# Exclude all test binaries +[Tt]est[Rr]esult*/ +[Tt]est[Rr]esults*/ + +# Uncomment if you have build info files in any project +# [Bb]uild/ + +# Exclude project files +project.lock.json +project.fragment.lock.json +artifacts/ + +# StyleCop +StyleCopReport.xml + +# === ASP.NET Specific === +# Exclude the App_Data folder (if it is not needed) +App_Data/ + +# === Angular Specific === +node_modules/ +dist/ +tmp/ +out-tsc/ +coverage/ +src/*.js +src/*.js.map +src/*.d.ts + +# Angular environment files +src/environments/environment*.ts + +# Angular build output +dist/ +tmp/ +compiled/ + +# Karma test files +karma.conf.js +karma.conf.* +karma-result* + +# Protractor test files +protractor.conf.js +protractor.conf.* + +# Angular IDE files +.angular/ +.idea/ +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-project +*.sublime-workspace + +# Editor config +.editorconfig + +# === End of Angular Specific === + +# Local History +.localhistory + +# === IDE Specific === +# Rider +.idea/ + +# Mac +*.DS_Store +.DS_Store? + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Cloud IDEs +*.code-workspace + +# Logs +*.log + +# Yarn Integrity file +.yarn-integrity + +# NPM package-lock +package-lock.json + +# JetBrains IDEs +.idea/ +*.iml +*.iws + +# npm debug log +npm-debug.log +yarn-error.log diff --git a/DigitalData.UserManager.API/Properties/launchSettings.json b/DigitalData.UserManager.API/Properties/launchSettings.json new file mode 100644 index 0000000..eba68da --- /dev/null +++ b/DigitalData.UserManager.API/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "DigitalData.UserManager.API": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:57319;http://localhost:57320" + } + } +} \ No newline at end of file