Updating app version number

This commit is contained in:
2025-02-18 22:49:13 -06:00
parent d5bbc30d7d
commit 900cf82e92
3 changed files with 6 additions and 9 deletions

View File

@@ -9,16 +9,15 @@ on:
required: true required: true
type: string type: string
env:
VITE_API_URL: "https://flying-api-test.internal.lemonflower-48c61d49.centralus.azurecontainerapps.io"
VITE_CLIENT_ID: "d3562a45-050d-4f9a-baed-0497c7156924"
VITE_TENANT_ID: "0f23652e-4b15-420f-991e-3d6fc769a31d"
VITE_REDIRECT_URL: "https://flying-app-test.lemonflower-48c61d49.centralus.azurecontainerapps.io"
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
environment: ${{ inputs.calling_workflow }} environment: ${{ inputs.calling_workflow }}
env:
VITE_API_URL: ${{ vars.VITE_API_URL }}
VITE_CLIENT_ID: ${{ vars.VITE_CLIENT_ID }}
VITE_TENANT_ID: ${{ vars.VITE_TENANT_ID }}
VITE_REDIRECT_URL: ${{ vars.VITE_REDIRECT_URL }}
steps: steps:
- run: | - run: |
printenv printenv

View File

@@ -9,7 +9,6 @@ async function bootstrap() {
const httpService = new HttpService(); const httpService = new HttpService();
const app = await NestFactory.create(AppModule); const app = await NestFactory.create(AppModule);
app.enableCors();
app.setGlobalPrefix('api'); app.setGlobalPrefix('api');
app.useGlobalFilters(new HttpExceptionFilter()); app.useGlobalFilters(new HttpExceptionFilter());
@@ -24,7 +23,6 @@ async function bootstrap() {
} }
); );
await app.listen(3000); await app.listen(3000);
} }
bootstrap(); bootstrap();

View File

@@ -1,7 +1,7 @@
{ {
"name": "app", "name": "app",
"private": true, "private": true,
"version": "0.0.26", "version": "0.0.27",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",