Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: deployment issue with stripe (closes #399) #444

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.15
18.19
43 changes: 19 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,27 @@
---
name: "Contoso Real Estate: JavaScript + Enterprise"
description: This repository contains the reference architecture and components for building enterprise-grade modern composable frontends (or micro-frontends) and cloud-native applications. It is a collection of best practices, architecture patterns, and functional components that can be used to build and deploy modern JavaScript applications to Azure.
page_type: sample
languages:
- azdeveloper
- javascript
- typescript
- nodejs
- bicep
- javascript
- typescript
- nodejs
products:
- azure
- azure-container-apps
- azure-container-registry
- azure-cosmos-db
- azure-database-postgresql
- azure-functions
- azure-key-vault
- azure-sdks
- azure-storage
- static-web-apps
- entra-id
- playwright
- vs-code
- azure-pipelines
urlFragment: contoso-real-estate
name: "Contoso Real Estate: JavaScript + Enterprise"
description: Intelligent enterprise-grade reference architecture for JavaScript, featuring OpenAI integration, Azure Developer CLI template and Playwright tests.
- azure
- azure-container-apps
- azure-container-registry
- azure-cosmos-db
- azure-database-postgresql
- azure-functions
- azure-key-vault
- azure-sdks
- azure-storage
- static-web-apps
- entra-id
- playwright
- vs-code
urlFragment: contoso-real-estate-javascript
---
<!-- YAML front-matter schema: https://review.learn.microsoft.com/en-us/help/contribute/samples/process/onboarding?branch=main#supported-metadata-fields-for-readmemd -->

# Enterprise-grade Reference Architecture for JavaScript

This repository contains the reference architecture and components for building enterprise-grade modern composable frontends (or micro-frontends) and cloud-native applications. It is a collection of best practices, architecture patterns, and functional components that can be used to build and deploy modern JavaScript applications to Azure.
Expand Down
1 change: 1 addition & 0 deletions chat-sample
Submodule chat-sample added at 081659
155 changes: 108 additions & 47 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion packages/blog-cms/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
"@strapi/strapi": "^4.5.6",
"lodash.set": "^4.3.2",
"pg": "^8.8.0",
"strapi-provider-upload-azure-storage": "^2.1.0"
"react": "^18.2.0",
manekinekko marked this conversation as resolved.
Show resolved Hide resolved
"react-dom": "^18.2.0",
"react-router-dom": "^5.3.4",
"strapi-provider-upload-azure-storage": "^2.1.0",
"styled-components": "^5.3.11"
},
"strapi": {
"uuid": "42db7187-d121-4240-b174-3b2b3605f696"
Expand Down
2 changes: 1 addition & 1 deletion packages/stripe/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app
COPY ./package*.json ./
COPY ./packages/stripe ./packages/stripe
RUN npm ci --workspace=stripe-api --cache /tmp/empty-cache
RUN npm run build:ts --workspace=stripe-api
RUN npm run build --workspace=stripe-api

# Run Node.js app
# ------------------------------------
Expand Down
Loading