Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
3a53900
Fix: Use testnet wallet address instead of mainnet
Jan 17, 2026
267b9e3
📚 Documentation: Production Ready Guide
Jan 17, 2026
5c9e0a8
Profile Update
chandan989 Jan 18, 2026
4c328e7
WebServer Update
chandan989 Jan 18, 2026
e65c671
WebServer Update
chandan989 Jan 18, 2026
0ed5a63
WebServer Update
chandan989 Jan 18, 2026
41d620b
WebServer Update
chandan989 Jan 18, 2026
c0e6bea
WebServer Update
chandan989 Jan 18, 2026
a97626c
WebServer Update
chandan989 Jan 18, 2026
e446e93
Add or update the Azure App Service build and deployment workflow config
chandan989 Jan 18, 2026
ed868d9
Update main_loopin-server.yml
chandan989 Jan 18, 2026
be30d37
WebServer Update
chandan989 Jan 18, 2026
cd605db
WebServer Update
chandan989 Jan 18, 2026
76832b7
WebServer Update
chandan989 Jan 18, 2026
5a03b18
WebServer Update
chandan989 Jan 18, 2026
826a622
WebServer Update
chandan989 Jan 18, 2026
8ff49b2
WebServer Update
chandan989 Jan 18, 2026
ad16e07
WebServer Update
chandan989 Jan 19, 2026
642f4e1
WebServer Update
chandan989 Jan 19, 2026
bcf2a3e
WebServer Update
chandan989 Jan 19, 2026
43cd310
Web3 Bug Fix
chandan989 Jan 19, 2026
1250bad
WebServer Player Data Cleanup
chandan989 Jan 19, 2026
2a95323
WebServer Trail Collision Fix
chandan989 Jan 19, 2026
4578842
PitchDeck
chandan989 Jan 19, 2026
51aad15
PitchDeck & README
chandan989 Jan 19, 2026
97f499a
Delete PRODUCTION_READY.md
nikhlu07 Feb 10, 2026
2bae2ef
Loading Screen Update
chandan989 Feb 12, 2026
ee5be7c
Merge pull request #1 from chandan989/feature/smart-contracts-v2
nikhlu07 Feb 15, 2026
a8912f5
test: Complete >90% coverage Clarinet testing suite and Rendezvous na…
nikhlu07 Mar 2, 2026
167ae43
fix(test): Resolve Rendezvous test sequence for test-join-game
nikhlu07 Mar 3, 2026
86630aa
test: add explicit CV deserialization and coverage for multi-winner p…
nikhlu07 Mar 3, 2026
7ed5ea8
chore: remove check-coverage helper script
nikhlu07 Mar 3, 2026
4b17bf1
Pitch Deck Update
chandan989 Mar 20, 2026
38916a1
Pitch Deck Update
chandan989 Mar 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions .github/workflows/main_loopin-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy
# More GitHub Actions for Azure: https://github.com/Azure/actions

name: Build and deploy Node.js app to Azure Web App - loopin-server

on:
push:
branches:
- main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read #This is required for actions/checkout

steps:
- uses: actions/checkout@v4

- name: Set up Node.js version
uses: actions/setup-node@v3
with:
node-version: '24.x'

- name: npm install
run: |
cd WebServer
npm install

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
with:
name: node-app
path: WebServer

deploy:
runs-on: ubuntu-latest
needs: build
permissions:
id-token: write #This is required for requesting the JWT
contents: read #This is required for actions/checkout

steps:
- name: Download artifact from build job
uses: actions/download-artifact@v4
with:
name: node-app

- name: Login to Azure
uses: azure/login@v2
with:
client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_198885A28A9F415AB2802B023C3FD7B5 }}
tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_906AF22167E548858C5B0B93B0CFFA31 }}
subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_DA64A5049ACE4CB1BFF2DA8F2EA5A6C9 }}

- name: 'Deploy to Azure Web App'
id: deploy-to-webapp
uses: azure/webapps-deploy@v3
with:
app-name: 'loopin-server'
slot-name: 'Production'
package: .


Loading
Loading