Skip to content

Commit 55ef404

Browse files
authored
feat(templates): add sync feature to bit Boilerplate client app offline database #11779 (#11780)
1 parent a63e75a commit 55ef404

File tree

94 files changed

+15119
-2112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+15119
-2112
lines changed

.github/workflows/admin-sample.cd.yml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -144,39 +144,6 @@ jobs:
144144
npm install -g @azure/static-web-apps-cli
145145
swa deploy --deployment-token ${{ secrets.ADMINPANEL_ASW_TOKEN }} --env production --app-location client/wwwroot
146146
147-
deploy_api_blazor:
148-
name: deploy api + blazor
149-
needs: build_api_blazor
150-
runs-on: ubuntu-24.04
151-
environment:
152-
name: 'production'
153-
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
154-
155-
steps:
156-
157-
- name: Retrieve server bundle
158-
uses: actions/download-artifact@v6
159-
with:
160-
name: server-web-bundle
161-
162-
- name: Retrieve AppleAuthKey.p8
163-
run: echo "${{ secrets.APPSTORE_API_KEY_PRIVATE_KEY_ADMIN }}" > AppleAuthKey.p8
164-
165-
- name: Deploy to Azure Web App
166-
id: deploy-to-webapp
167-
uses: azure/webapps-deploy@v3
168-
with:
169-
app-name: ${{ env.APP_SERVICE_NAME }}
170-
slot-name: 'production'
171-
publish-profile: ${{ secrets.ADMINPANEL_AZURE_APP_SERVICE_PUBLISH_PROFILE }}
172-
package: .
173-
174-
- name: Purge cache
175-
uses: jakejarvis/cloudflare-purge-action@v0.3.0
176-
env:
177-
CLOUDFLARE_ZONE: ${{ secrets.BITPLATFORM_DEV_CLOUDFLARE_ZONE }}
178-
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
179-
180147
build_blazor_hybrid_windows:
181148
name: build blazor hybrid (windows)
182149
runs-on: windows-2025

.github/workflows/blazorui.demo.cd.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -56,36 +56,6 @@ jobs:
5656
path: server
5757
include-hidden-files: true # Required for wwwroot/.well-known folder
5858

59-
deploy_api_blazor:
60-
name: deploy api + blazor
61-
needs: build_api_blazor
62-
runs-on: ubuntu-24.04
63-
environment:
64-
name: 'production'
65-
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
66-
67-
steps:
68-
69-
- name: Retrieve server bundle
70-
uses: actions/download-artifact@v6
71-
with:
72-
name: server-bundle
73-
74-
- name: Deploy to Azure Web App
75-
id: deploy-to-webapp
76-
uses: azure/webapps-deploy@v3
77-
with:
78-
app-name: ${{ env.APP_SERVICE_NAME }}
79-
slot-name: 'production'
80-
publish-profile: ${{ secrets.COMPONENTS_AZURE_APP_SERVICE_PUBLISH_PROFILE }}
81-
package: .
82-
83-
- name: Purge cache
84-
uses: jakejarvis/cloudflare-purge-action@v0.3.0
85-
env:
86-
CLOUDFLARE_ZONE: ${{ secrets.BITPLATFORM_DEV_CLOUDFLARE_ZONE }}
87-
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
88-
8959
build_blazor_hybrid_windows:
9060
name: build blazor hybrid (windows)
9161
runs-on: windows-2025

.github/workflows/platform.website.cd.yml

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -39,34 +39,4 @@ jobs:
3939
with:
4040
name: server-bundle
4141
path: server
42-
include-hidden-files: true # Required for wwwroot/.well-known folder
43-
44-
deploy_api_blazor:
45-
name: deploy api + blazor
46-
needs: build_api_blazor
47-
runs-on: ubuntu-24.04
48-
environment:
49-
name: 'production'
50-
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
51-
52-
steps:
53-
54-
- name: Retrieve server bundle
55-
uses: actions/download-artifact@v6
56-
with:
57-
name: server-bundle
58-
59-
- name: Deploy to Azure Web App
60-
id: deploy-to-webapp
61-
uses: azure/webapps-deploy@v3
62-
with:
63-
app-name: ${{ env.APP_SERVICE_NAME }}
64-
slot-name: 'production'
65-
publish-profile: ${{ secrets.BITPLATFORM_AZURE_APP_SERVICE_PUBLISH_PROFILE }}
66-
package: .
67-
68-
- name: Purge cache
69-
uses: jakejarvis/cloudflare-purge-action@v0.3.0
70-
env:
71-
CLOUDFLARE_ZONE: ${{ secrets.BITPLATFORM_DEV_CLOUDFLARE_ZONE }}
72-
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
42+
include-hidden-files: true # Required for wwwroot/.well-known folder

.github/workflows/sales-module-demo.cd.yml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -82,39 +82,6 @@ jobs:
8282
path: server
8383
include-hidden-files: true # Required for wwwroot/.well-known folder
8484

85-
deploy_api_blazor:
86-
name: deploy api + blazor
87-
needs: build_api_blazor
88-
runs-on: ubuntu-24.04
89-
environment:
90-
name: 'production'
91-
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
92-
93-
steps:
94-
95-
- name: Retrieve server bundle
96-
uses: actions/download-artifact@v6
97-
with:
98-
name: server-bundle
99-
100-
- name: Retrieve AppleAuthKey.p8
101-
run: echo "${{ secrets.APPSTORE_API_KEY_PRIVATE_KEY_SALES }}" > AppleAuthKey.p8
102-
103-
- name: Deploy to Azure Web App
104-
id: deploy-to-webapp
105-
uses: azure/webapps-deploy@v3
106-
with:
107-
app-name: 'bit-sales'
108-
slot-name: 'production'
109-
publish-profile: ${{ secrets.SALES_AZURE_APP_SERVICE_PUBLISH_PROFILE }}
110-
package: .
111-
112-
- name: Purge cache
113-
uses: jakejarvis/cloudflare-purge-action@v0.3.0
114-
env:
115-
CLOUDFLARE_ZONE: ${{ secrets.BITPLATFORM_DEV_CLOUDFLARE_ZONE }}
116-
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
117-
11885
build_blazor_hybrid_windows:
11986
name: build blazor hybrid (windows)
12087
runs-on: windows-2025

.github/workflows/sales.website.cd.yml

Lines changed: 1 addition & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -39,34 +39,4 @@ jobs:
3939
with:
4040
name: server-bundle
4141
path: server
42-
include-hidden-files: true # Required for wwwroot/.well-known folder
43-
44-
deploy_api_blazor:
45-
name: deploy api + blazor
46-
needs: build_api_blazor
47-
runs-on: ubuntu-24.04
48-
environment:
49-
name: 'production'
50-
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }}
51-
52-
steps:
53-
54-
- name: Retrieve server bundle
55-
uses: actions/download-artifact@v6
56-
with:
57-
name: server-bundle
58-
59-
- name: Deploy to Azure Web App
60-
id: deploy-to-webapp
61-
uses: azure/webapps-deploy@v3
62-
with:
63-
app-name: ${{ env.APP_SERVICE_NAME }}
64-
slot-name: 'production'
65-
publish-profile: ${{ secrets.BITSERVICES_AZURE_APP_SERVICE_PUBLISH_PROFILE }}
66-
package: .
67-
68-
- name: Purge cache
69-
uses: jakejarvis/cloudflare-purge-action@v0.3.0
70-
env:
71-
CLOUDFLARE_ZONE: ${{ secrets.BITSERVICES_COMPANY_CLOUDFLARE_ZONE }}
72-
CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }}
42+
include-hidden-files: true # Required for wwwroot/.well-known folder

0 commit comments

Comments
 (0)