From de6ab1e09488b55e4ac29ec23623c46fe37dc3ed Mon Sep 17 00:00:00 2001 From: Giovani Date: Wed, 30 Jun 2021 23:24:13 -0400 Subject: [PATCH] feat!: restart project using flask and websockets --- .github/workflows/tetriscloneapp.yml | 39 -- .gitignore | 451 +++++------------- TetrisClone.WebApi.sln | 25 - .../Controllers/TetrisController.cs | 27 -- TetrisClone.WebApi/Hubs/PlayerHub.cs | 46 -- TetrisClone.WebApi/Model/Piece.cs | 14 - TetrisClone.WebApi/Model/PieceType.cs | 18 - TetrisClone.WebApi/Program.cs | 26 - .../tetriscloneapp/profile.arm.json | 117 ----- .../Properties/launchSettings.json | 31 -- TetrisClone.WebApi/Startup.cs | 61 --- TetrisClone.WebApi/TetrisClone.WebApi.csproj | 12 - .../appsettings.Development.json | 9 - TetrisClone.WebApi/appsettings.json | 10 - 14 files changed, 115 insertions(+), 771 deletions(-) delete mode 100644 .github/workflows/tetriscloneapp.yml delete mode 100644 TetrisClone.WebApi.sln delete mode 100644 TetrisClone.WebApi/Controllers/TetrisController.cs delete mode 100644 TetrisClone.WebApi/Hubs/PlayerHub.cs delete mode 100644 TetrisClone.WebApi/Model/Piece.cs delete mode 100644 TetrisClone.WebApi/Model/PieceType.cs delete mode 100644 TetrisClone.WebApi/Program.cs delete mode 100644 TetrisClone.WebApi/Properties/ServiceDependencies/tetriscloneapp/profile.arm.json delete mode 100644 TetrisClone.WebApi/Properties/launchSettings.json delete mode 100644 TetrisClone.WebApi/Startup.cs delete mode 100644 TetrisClone.WebApi/TetrisClone.WebApi.csproj delete mode 100644 TetrisClone.WebApi/appsettings.Development.json delete mode 100644 TetrisClone.WebApi/appsettings.json diff --git a/.github/workflows/tetriscloneapp.yml b/.github/workflows/tetriscloneapp.yml deleted file mode 100644 index b4e37cf..0000000 --- a/.github/workflows/tetriscloneapp.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Build and deploy .NET Core application to Web App tetriscloneapp -on: - push: - branches: - - main -env: - AZURE_WEBAPP_NAME: tetriscloneapp - AZURE_WEBAPP_PACKAGE_PATH: TetrisClone.WebApi/publish - CONFIGURATION: Release - DOTNET_CORE_VERSION: 6.0.x - WORKING_DIRECTORY: TetrisClone.WebApi -jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-dotnet@v1.8.0 - with: - include-prerelease: True - dotnet-version: ${{ env.DOTNET_CORE_VERSION }} - - name: Restore - run: dotnet restore "${{ env.WORKING_DIRECTORY }}" - - name: Build - run: dotnet build "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-restore - - name: Test - run: dotnet test "${{ env.WORKING_DIRECTORY }}" --no-build - - name: Publish - run: dotnet publish "${{ env.WORKING_DIRECTORY }}" --configuration ${{ env.CONFIGURATION }} --no-build --output "${{ env.AZURE_WEBAPP_PACKAGE_PATH }}" - - name: Deploy to Azure WebApp - uses: azure/webapps-deploy@v2 - with: - app-name: ${{ env.AZURE_WEBAPP_NAME }} - publish-profile: ${{ secrets.TETRISCLONEAPP_FFFF }} - package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} - - name: Publish Artifacts - uses: actions/upload-artifact@v1.0.0 - with: - name: webapp - path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }} diff --git a/.gitignore b/.gitignore index dfcfd56..b6e4761 100644 --- a/.gitignore +++ b/.gitignore @@ -1,350 +1,129 @@ -## Ignore Visual Studio temporary files, build results, and -## files generated by popular Visual Studio add-ons. -## -## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore - -# User-specific files -*.rsuser -*.suo -*.user -*.userosscache -*.sln.docstates - -# User-specific files (MonoDevelop/Xamarin Studio) -*.userprefs - -# Mono auto generated files -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/ -[Ll]ogs/ - -# Visual Studio 2015/2017 cache/options directory -.vs/ -# Uncomment if you have tasks that create the project's static files in wwwroot -#wwwroot/ - -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUnit -*.VisualState.xml -TestResult.xml -nunit-*.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ - -# StyleCop -StyleCopReport.xml - -# Files built by Visual Studio -*_i.c -*_p.c -*_h.h -*.ilk -*.meta -*.obj -*.iobj -*.pch -*.pdb -*.ipdb -*.pgc -*.pgd -*.rsp -*.sbr -*.tlb -*.tli -*.tlh -*.tmp -*.tmp_proj -*_wpftmp.csproj -*.log -*.vspscc -*.vssscc -.builds -*.pidb -*.svclog -*.scc - -# Chutzpah Test files -_Chutzpah* - -# Visual C++ cache files -ipch/ -*.aps -*.ncb -*.opendb -*.opensdf -*.sdf -*.cachefile -*.VC.db -*.VC.VC.opendb - -# Visual Studio profiler -*.psess -*.vsp -*.vspx -*.sap - -# Visual Studio Trace Files -*.e2e - -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - -# Web workbench (sass) -.sass-cache/ - -# Installshield output folder -[Ee]xpress/ - -# DocProject is a documentation generator add-in -DocProject/buildhelp/ -DocProject/Help/*.HxT -DocProject/Help/*.HxC -DocProject/Help/*.hhc -DocProject/Help/*.hhk -DocProject/Help/*.hhp -DocProject/Help/Html2 -DocProject/Help/html - -# Click-Once directory -publish/ - -# Publish Web Output -*.[Pp]ublish.xml -*.azurePubxml -# Note: Comment the next line if you want to checkin your web deploy settings, -# but database connection strings (with potential passwords) will be unencrypted -*.pubxml -*.publishproj - -# Microsoft Azure Web App publish settings. Comment the next line if you want to -# checkin your Azure Web App publish settings, but sensitive information contained -# in these scripts will be unencrypted -PublishScripts/ - -# NuGet Packages -*.nupkg -# NuGet Symbol Packages -*.snupkg -# The packages folder can be ignored because of Package Restore -**/[Pp]ackages/* -# except build/, which is used as an MSBuild target. -!**/[Pp]ackages/build/ -# Uncomment if necessary however generally it will be regenerated when needed -#!**/[Pp]ackages/repositories.config -# NuGet v3's project.json files produces more ignorable files -*.nuget.props -*.nuget.targets - -# Microsoft Azure Build Output -csx/ -*.build.csdef - -# Microsoft Azure Emulator -ecf/ -rcf/ - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx -*.appxbundle -*.appxupload - -# Visual Studio cache files -# files ending in .cache can be ignored -*.[Cc]ache -# but keep track of directories ending in .cache -!?*.[Cc]ache/ - -# Others -ClientBin/ -~$* -*~ -*.dbmdl -*.dbproj.schemaview -*.jfm -*.pfx -*.publishsettings -orleans.codegen.cs - -# Including strong name files can present a security risk -# (https://github.com/github/gitignore/pull/2483#issue-259490424) -#*.snk - -# Since there are multiple workflows, uncomment next line to ignore bower_components -# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) -#bower_components/ - -# RIA/Silverlight projects -Generated_Code/ - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - -# SQL Server files -*.mdf -*.ldf -*.ndf - -# Business Intelligence projects -*.rdl.data -*.bim.layout -*.bim_*.settings -*.rptproj.rsuser -*- [Bb]ackup.rdl -*- [Bb]ackup ([0-9]).rdl -*- [Bb]ackup ([0-9][0-9]).rdl - -# Microsoft Fakes -FakesAssemblies/ - -# GhostDoc plugin setting file -*.GhostDoc.xml - -# Node.js Tools for Visual Studio -.ntvs_analysis.dat -node_modules/ - -# Visual Studio 6 build log -*.plg - -# Visual Studio 6 workspace options file -*.opt - -# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) -*.vbw - -# Visual Studio LightSwitch build output -**/*.HTMLClient/GeneratedArtifacts -**/*.DesktopClient/GeneratedArtifacts -**/*.DesktopClient/ModelManifest.xml -**/*.Server/GeneratedArtifacts -**/*.Server/ModelManifest.xml -_Pvt_Extensions - -# Paket dependency manager -.paket/paket.exe -paket-files/ - -# FAKE - F# Make -.fake/ - -# CodeRush personal settings -.cr/personal - -# Python Tools for Visual Studio (PTVS) +# Byte-compiled / optimized / DLL files __pycache__/ -*.pyc +*.py[cod] +*$py.class -# Cake - Uncomment if you are using it -# tools/** -# !tools/packages.config +# C extensions +*.so -# Tabs Studio -*.tss +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST -# Telerik's JustMock configuration file -*.jmconfig +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec -# BizTalk build output -*.btp.cs -*.btm.cs -*.odx.cs -*.xsd.cs +# Installer logs +pip-log.txt +pip-delete-this-directory.txt -# OpenCover UI analysis results -OpenCover/ +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ -# Azure Stream Analytics local run output -ASALocalRun/ +# Translations +*.mo +*.pot -# MSBuild Binary and Structured Log -*.binlog +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal -# NVidia Nsight GPU debugger configuration file -*.nvuser +# Flask stuff: +instance/ +.webassets-cache -# MFractors (Xamarin productivity tool) working folder -.mfractor/ +# Scrapy stuff: +.scrapy -# Local History for Visual Studio -.localhistory/ +# Sphinx documentation +docs/_build/ -# BeatPulse healthcheck temp database -healthchecksdb +# PyBuilder +target/ -# Backup folder for Package Reference Convert tool in Visual Studio 2017 -MigrationBackup/ +# Jupyter Notebook +.ipynb_checkpoints -# Ionide (cross platform F# VS Code tools) working folder -.ionide/ +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ diff --git a/TetrisClone.WebApi.sln b/TetrisClone.WebApi.sln deleted file mode 100644 index 1136502..0000000 --- a/TetrisClone.WebApi.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.0.31423.177 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TetrisClone.WebApi", "TetrisClone.WebApi\TetrisClone.WebApi.csproj", "{3B7088A2-3AD1-495D-B8D8-A454BB9FBD9F}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3B7088A2-3AD1-495D-B8D8-A454BB9FBD9F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3B7088A2-3AD1-495D-B8D8-A454BB9FBD9F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3B7088A2-3AD1-495D-B8D8-A454BB9FBD9F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3B7088A2-3AD1-495D-B8D8-A454BB9FBD9F}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {C36D5CF7-84B8-4588-B8E2-3209C0A9E098} - EndGlobalSection -EndGlobal diff --git a/TetrisClone.WebApi/Controllers/TetrisController.cs b/TetrisClone.WebApi/Controllers/TetrisController.cs deleted file mode 100644 index 6733109..0000000 --- a/TetrisClone.WebApi/Controllers/TetrisController.cs +++ /dev/null @@ -1,27 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Logging; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace TetrisClone.WebApi.Controllers -{ - [ApiController] - [Route("[controller]")] - public class TetrisController : ControllerBase - { - private readonly ILogger _logger; - - public TetrisController(ILogger logger) - { - _logger = logger; - } - - [HttpGet] - public ActionResult Get() - { - return new EmptyResult(); - } - } -} diff --git a/TetrisClone.WebApi/Hubs/PlayerHub.cs b/TetrisClone.WebApi/Hubs/PlayerHub.cs deleted file mode 100644 index 302a936..0000000 --- a/TetrisClone.WebApi/Hubs/PlayerHub.cs +++ /dev/null @@ -1,46 +0,0 @@ -using Microsoft.AspNetCore.SignalR; -using System.Collections.Concurrent; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using TetrisClone.WebApi.Model; - -namespace TetrisClone.WebApi.Hubs -{ - public class PlayerHub : Hub - { - public ConcurrentDictionary> Games { get; set; } - - private const int PLAYERS_PER_GAME = 2; - - /* - TODO: Fix assumption that there will only ever be two players connecting using same uniqueString - */ - public async Task EnterGame(string gameId) - { - if (Games.Keys.Any(x => x == gameId)) - Games[gameId].Add(Context.ConnectionId); - else - Games[gameId] = new List { Context.ConnectionId }; - - if (Games[gameId].Count != PLAYERS_PER_GAME) - await Clients - .Clients(Games[gameId]) - .SendAsync("StartGame"); - - await Clients - .Clients(Games[gameId]) - .SendAsync("WaitForOpponent"); - } - - public async Task SendCurrentPiece(string gameId, Piece piece) - { - if (Games.Keys.All(x => x != gameId)) - return; - - await Clients - .Clients(Games[gameId].First(x => x != Context.ConnectionId)) - .SendAsync("GetOpponentPiece"); - } - } -} diff --git a/TetrisClone.WebApi/Model/Piece.cs b/TetrisClone.WebApi/Model/Piece.cs deleted file mode 100644 index d37cdcc..0000000 --- a/TetrisClone.WebApi/Model/Piece.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace TetrisClone.WebApi.Model -{ - public class Piece - { - public int X { get; set; } - public int Y { get; set; } - public PieceType Type { get; set; } - } -} diff --git a/TetrisClone.WebApi/Model/PieceType.cs b/TetrisClone.WebApi/Model/PieceType.cs deleted file mode 100644 index 0fc97a6..0000000 --- a/TetrisClone.WebApi/Model/PieceType.cs +++ /dev/null @@ -1,18 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace TetrisClone.WebApi.Model -{ - public enum PieceType - { - I, - J, - L, - O, - S, - T, - Z - } -} diff --git a/TetrisClone.WebApi/Program.cs b/TetrisClone.WebApi/Program.cs deleted file mode 100644 index 6e4a3c9..0000000 --- a/TetrisClone.WebApi/Program.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace TetrisClone.WebApi -{ - public class Program - { - public static void Main(string[] args) - { - CreateHostBuilder(args).Build().Run(); - } - - public static IHostBuilder CreateHostBuilder(string[] args) => - Host.CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(webBuilder => - { - webBuilder.UseStartup(); - }); - } -} diff --git a/TetrisClone.WebApi/Properties/ServiceDependencies/tetriscloneapp/profile.arm.json b/TetrisClone.WebApi/Properties/ServiceDependencies/tetriscloneapp/profile.arm.json deleted file mode 100644 index b98f586..0000000 --- a/TetrisClone.WebApi/Properties/ServiceDependencies/tetriscloneapp/profile.arm.json +++ /dev/null @@ -1,117 +0,0 @@ -{ - "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "metadata": { - "_dependencyType": "appService.linux" - }, - "parameters": { - "resourceGroupName": { - "type": "string", - "defaultValue": "development", - "metadata": { - "description": "Name of the resource group for the resource. It is recommended to put resources under same resource group for better tracking." - } - }, - "resourceGroupLocation": { - "type": "string", - "defaultValue": "eastus", - "metadata": { - "description": "Location of the resource group. Resource groups could have different location than resources, however by default we use API versions from latest hybrid profile which support all locations for resource types we support." - } - }, - "resourceName": { - "type": "string", - "defaultValue": "tetriscloneapp", - "metadata": { - "description": "Name of the main resource to be created by this template." - } - }, - "resourceLocation": { - "type": "string", - "defaultValue": "[parameters('resourceGroupLocation')]", - "metadata": { - "description": "Location of the resource. By default use resource group's location, unless the resource provider is not supported there." - } - } - }, - "variables": { - "appServicePlan_name": "[concat('Plan', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", - "appServicePlan_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/serverFarms/', variables('appServicePlan_name'))]" - }, - "resources": [ - { - "type": "Microsoft.Resources/resourceGroups", - "name": "[parameters('resourceGroupName')]", - "location": "[parameters('resourceGroupLocation')]", - "apiVersion": "2019-10-01" - }, - { - "type": "Microsoft.Resources/deployments", - "name": "[concat(parameters('resourceGroupName'), 'Deployment', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", - "resourceGroup": "[parameters('resourceGroupName')]", - "apiVersion": "2019-10-01", - "dependsOn": [ - "[parameters('resourceGroupName')]" - ], - "properties": { - "mode": "Incremental", - "template": { - "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", - "contentVersion": "1.0.0.0", - "resources": [ - { - "location": "[parameters('resourceLocation')]", - "name": "[parameters('resourceName')]", - "type": "Microsoft.Web/sites", - "apiVersion": "2015-08-01", - "tags": { - "[concat('hidden-related:', variables('appServicePlan_ResourceId'))]": "empty" - }, - "dependsOn": [ - "[variables('appServicePlan_ResourceId')]" - ], - "kind": "app", - "properties": { - "name": "[parameters('resourceName')]", - "kind": "app", - "httpsOnly": true, - "reserved": false, - "serverFarmId": "[variables('appServicePlan_ResourceId')]", - "siteConfig": { - "linuxFxVersion": "DOTNETCORE|2.1" - } - }, - "identity": { - "type": "SystemAssigned" - }, - "resources": [ - { - "name": "appsettings", - "type": "config", - "apiVersion": "2015-08-01", - "dependsOn": [ - "[concat('Microsoft.Web/Sites/', parameters('resourceName'))]" - ], - "properties": {} - } - ] - }, - { - "location": "[parameters('resourceLocation')]", - "name": "[variables('appServicePlan_name')]", - "type": "Microsoft.Web/serverFarms", - "apiVersion": "2015-02-01", - "kind": "linux", - "properties": { - "name": "[variables('appServicePlan_name')]", - "sku": "Standard", - "workerSizeId": "0", - "reserved": true - } - } - ] - } - } - } - ] -} \ No newline at end of file diff --git a/TetrisClone.WebApi/Properties/launchSettings.json b/TetrisClone.WebApi/Properties/launchSettings.json deleted file mode 100644 index 83209a7..0000000 --- a/TetrisClone.WebApi/Properties/launchSettings.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/launchsettings.json", - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:8898", - "sslPort": 44312 - } - }, - "profiles": { - "TetrisClone.WebApi": { - "commandName": "Project", - "dotnetRunMessages": true, - "launchBrowser": true, - "launchUrl": "swagger", - "applicationUrl": "https://localhost:5001;http://localhost:5000", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - } - } -} diff --git a/TetrisClone.WebApi/Startup.cs b/TetrisClone.WebApi/Startup.cs deleted file mode 100644 index fbeea5e..0000000 --- a/TetrisClone.WebApi/Startup.cs +++ /dev/null @@ -1,61 +0,0 @@ -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.HttpsPolicy; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; -using Microsoft.OpenApi.Models; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using TetrisClone.WebApi.Hubs; - -namespace TetrisClone.WebApi -{ - public class Startup - { - public Startup(IConfiguration configuration) - { - Configuration = configuration; - } - - public IConfiguration Configuration { get; } - - // This method gets called by the runtime. Use this method to add services to the container. - public void ConfigureServices(IServiceCollection services) - { - services.AddControllers(); - services.AddSignalR(); - services.AddSwaggerGen(c => - { - c.SwaggerDoc("v1", new OpenApiInfo { Title = "TetrisClone.WebApi", Version = "v1" }); - }); - } - - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. - public void Configure(IApplicationBuilder app, IWebHostEnvironment env) - { - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - app.UseSwagger(); - app.UseSwaggerUI(c => c.SwaggerEndpoint("/swagger/v1/swagger.json", "TetrisClone.WebApi v1")); - } - - app.UseHttpsRedirection(); - - app.UseRouting(); - - app.UseAuthorization(); - - app.UseEndpoints(endpoints => - { - endpoints.MapControllers(); - endpoints.MapHub("/player"); - }); - } - } -} diff --git a/TetrisClone.WebApi/TetrisClone.WebApi.csproj b/TetrisClone.WebApi/TetrisClone.WebApi.csproj deleted file mode 100644 index 57b899e..0000000 --- a/TetrisClone.WebApi/TetrisClone.WebApi.csproj +++ /dev/null @@ -1,12 +0,0 @@ - - - - net6.0 - - - - - - - - diff --git a/TetrisClone.WebApi/appsettings.Development.json b/TetrisClone.WebApi/appsettings.Development.json deleted file mode 100644 index 8983e0f..0000000 --- a/TetrisClone.WebApi/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/TetrisClone.WebApi/appsettings.json b/TetrisClone.WebApi/appsettings.json deleted file mode 100644 index d9d9a9b..0000000 --- a/TetrisClone.WebApi/appsettings.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "AllowedHosts": "*" -}