From 42bc48c1df2da41c81db7287e3d39c29996ffbda Mon Sep 17 00:00:00 2001 From: noahspannbauer Date: Sun, 23 Nov 2025 11:07:08 -0600 Subject: [PATCH] 96 switch from azure table storage to sqlite (#99) * adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure * updating infrastructure * updating infrastructure * updating infrastructure * updating infrastructure * updating infrastructure --- .github/workflows/build.yaml | 1 + .github/workflows/changes.yaml | 1 - api/package.json | 2 +- client/package.json | 2 +- package.json | 2 +- 5 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b27a96d..c469f8d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,6 +19,7 @@ jobs: with: sparse-checkout: | api + client - name: Install Nest CLI run: | diff --git a/.github/workflows/changes.yaml b/.github/workflows/changes.yaml index 1d864c4..436f372 100644 --- a/.github/workflows/changes.yaml +++ b/.github/workflows/changes.yaml @@ -20,7 +20,6 @@ jobs: - uses: dorny/paths-filter@v3 id: filter with: - initial-fetch-depth: 2 filters: | api: - 'api/**' diff --git a/api/package.json b/api/package.json index 4e51c07..b1ae331 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "2.0.0-alpha", + "version": "2.0.0-alpha-1", "description": "", "author": "", "private": true, diff --git a/client/package.json b/client/package.json index a2bc4f5..83aa178 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.0.0-alpha", + "version": "2.0.0-alpha-1", "type": "module", "scripts": { "dev": "vite", diff --git a/package.json b/package.json index 31df346..3078e6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@noahspan/flying", - "version": "2.0.0-alpha", + "version": "2.0.0-alpha-1", "scripts": { "start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'", "format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",