From 7f25510623abd4ea487cb2d4ade9c2d3779e82ac Mon Sep 17 00:00:00 2001 From: John Parkhurst Date: Sun, 18 Jan 2026 19:04:55 -0500 Subject: [PATCH 1/3] Test Dev Deployment (#26) * Update server.js * Update server.js * Update server.js --- api/server.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/api/server.js b/api/server.js index 1e2c7df..c21522d 100644 --- a/api/server.js +++ b/api/server.js @@ -45,6 +45,14 @@ app.get('/api/db-health', async (req, res) => { res.status(500).json({ connected: false, error: err.message }); } }); +app.get('/api/version', async (req, res) => { + try { + res.json('1.0.1'); + } catch (err) { + console.error(err); + res.status(500).json({ connected: false, error: err.message }); + } +}); app.listen(5172, () => { console.log('Server Started on port 5172'); From 31dade87ed7b801419c6964b9016a11a0055b510 Mon Sep 17 00:00:00 2001 From: John Parkhurst Date: Mon, 19 Jan 2026 01:22:08 -0500 Subject: [PATCH 2/3] Fix formatting in README title Removed extra space in the title and adjusted formatting. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c8b6ec3..a5febe9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Welcome to ShiftSync 👋 +# Welcome to ShiftSync This is a new project, directed to create a website and app that is new, innovative, and works efficiently to schedule first responders/employees to shifts. The website and app is directed toward volunteer agencies specifically in both Fire Department and EMS fields. The website and app is currently in development and will hope to reach alpha by end of 2025. From 4f66a0169b1c9b58b38f6dbc7e0690e5f9978811 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Mon, 19 Jan 2026 13:51:14 -0500 Subject: [PATCH 3/3] Fix curl command syntax in deployment workflow --- .github/workflows/api-deploy-nonprod.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api-deploy-nonprod.yml b/.github/workflows/api-deploy-nonprod.yml index ff3547c..88361a3 100644 --- a/.github/workflows/api-deploy-nonprod.yml +++ b/.github/workflows/api-deploy-nonprod.yml @@ -90,5 +90,5 @@ jobs: steps: - name: Deploy to Coolify run: | - curl --request GET '${{ secrets.COOLIFY_WEBHOOK_API }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' + curl -X --request GET '${{ secrets.COOLIFY_WEBHOOK_API }}' --header 'Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}'