From ab2cd837a39b186a5b700f4767a7cfbdcf1f300e Mon Sep 17 00:00:00 2001 From: Giovani Date: Thu, 1 Jul 2021 00:32:03 -0400 Subject: [PATCH] fix: address websocket not starting on web app --- .github/workflows/main_tetris-clone.yml | 6 +++++- __init__.py => main.py | 0 2 files changed, 5 insertions(+), 1 deletion(-) rename __init__.py => main.py (100%) diff --git a/.github/workflows/main_tetris-clone.yml b/.github/workflows/main_tetris-clone.yml index ae258dd..a62e633 100644 --- a/.github/workflows/main_tetris-clone.yml +++ b/.github/workflows/main_tetris-clone.yml @@ -59,4 +59,8 @@ jobs: with: app-name: 'tetris-clone' slot-name: 'production' - publish-profile: ${{ secrets.AzureAppService_PublishProfile_ba3d879df28c472d8865f0591c14832f }} \ No newline at end of file + publish-profile: ${{ secrets.AzureAppService_PublishProfile_ba3d879df28c472d8865f0591c14832f }} + + - name: 'Start web socket' + run: | + python main.py \ No newline at end of file diff --git a/__init__.py b/main.py similarity index 100% rename from __init__.py rename to main.py