Skip to content

Commit 4184d40

Browse files
chore(examples): move app-crm to "Enterprise Edition" (#6383)
1 parent 921c08d commit 4184d40

File tree

248 files changed

+108
-26683
lines changed

Some content is hidden

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

248 files changed

+108
-26683
lines changed

.github/workflows/example-previews-pr.yml

+18-20
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
- "examples/finefoods-antd/**"
77
- "examples/finefoods-client/**"
88
- "examples/finefoods-material-ui/**"
9-
- "examples/app-crm/**"
109
- "examples/pixels/**"
1110
- "examples/invoicer/**"
1211
types:
@@ -24,25 +23,24 @@ jobs:
2423
examples: ${{ steps.filter.outputs.changes }}
2524
all_examples: ${{ steps.deploy-previews-label.outputs.all_examples }}
2625
steps:
27-
- uses: actions/checkout@v4
28-
- name: Get PR labels
29-
id: pr-labels
30-
uses: joerick/[email protected]
31-
- name: 'Check deploy previews label'
32-
if: ${{ contains(steps.pr-labels.outputs.labels, ' deploy-previews ') }}
33-
id: deploy-previews-label
34-
run: echo 'all_examples=["finefoods-antd", "finefoods-client", "finefoods-material-ui", "app-crm", "pixels", "invoicer"]' >> $GITHUB_OUTPUT
35-
- uses: dorny/paths-filter@v3
36-
if: ${{ !contains(steps.pr-labels.outputs.labels, ' deploy-previews ') }}
37-
id: filter
38-
with:
39-
filters: |
40-
'finefoods-antd': 'examples/finefoods-antd/**'
41-
'finefoods-client': 'examples/finefoods-client/**'
42-
'finefoods-material-ui': 'examples/finefoods-material-ui/**'
43-
'app-crm': 'examples/app-crm/**'
44-
'pixels': 'examples/pixels/**'
45-
'invoicer': 'examples/invoicer/**'
26+
- uses: actions/checkout@v4
27+
- name: Get PR labels
28+
id: pr-labels
29+
uses: joerick/[email protected]
30+
- name: "Check deploy previews label"
31+
if: ${{ contains(steps.pr-labels.outputs.labels, ' deploy-previews ') }}
32+
id: deploy-previews-label
33+
run: echo 'all_examples=["finefoods-antd", "finefoods-client", "finefoods-material-ui", "pixels", "invoicer"]' >> $GITHUB_OUTPUT
34+
- uses: dorny/paths-filter@v3
35+
if: ${{ !contains(steps.pr-labels.outputs.labels, ' deploy-previews ') }}
36+
id: filter
37+
with:
38+
filters: |
39+
'finefoods-antd': 'examples/finefoods-antd/**'
40+
'finefoods-client': 'examples/finefoods-client/**'
41+
'finefoods-material-ui': 'examples/finefoods-material-ui/**'
42+
'pixels': 'examples/pixels/**'
43+
'invoicer': 'examples/invoicer/**'
4644
4745
deploy_previews:
4846
runs-on: ubuntu-latest

documentation/blog/2023-03-22-react-admin-templates.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Overall, the Refine CRM admin template is an excellent choice for businesses tha
5757

5858
**Live example:** https://example.crm.refine.dev/
5959

60-
**Source code**: https://github.com/refinedev/refine/tree/master/examples/app-crm
60+
**Template**: https://refine.dev/templates/crm-application/
6161

6262
## 2. Elstar
6363

documentation/blog/2023-10-02-refine-crm-overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ I want to introduce our newest example app – a full-fledged React CRM (Custome
1414

1515
👉 [Live Demo](https://example.crm.refine.dev/)
1616

17-
👉 [You can find the source code on GitHub here](https://github.com/refinedev/refine/tree/master/examples/app-crm)
17+
👉 [Template](https://refine.dev/templates/crm-application/)
1818

1919
This example is open-source, which means anyone can freely utilize and customize the source code as they see fit. It's not just another application; it's a comprehensive solution that boasts all the features and functionalities required for an accurate enterprise-level application.
2020

documentation/blog/2024-07-23-react-dashboard-libraries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ npm create refine-app@latest
6767

6868
- GitHub stars: +27K
6969
- License: MIT
70-
- Links: [Demo](https://example.crm.refine.dev/) | [Documentation](https://refine.dev/tutorial) | [GitHub](https://github.com/refinedev/refine/tree/master/examples/app-crm)
70+
- Links: [Demo](https://example.crm.refine.dev/) | [Documentation](https://refine.dev/tutorial) | [Template](https://refine.dev/templates/crm-application/)
7171

7272
## Ant Design pro
7373

examples/app-crm-minimal/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"classnames": "^2.3.2",
3131
"cross-env": "^7.0.3",
3232
"dayjs": "^1.10.7",
33+
"graphql": "^15.6.1",
3334
"graphql-tag": "^2.12.6",
3435
"graphql-ws": "^5.9.1",
3536
"react": "^18.0.0",

examples/app-crm/.eslintrc

-28
This file was deleted.

examples/app-crm/.gitignore

-23
This file was deleted.

examples/app-crm/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
> 🚨 This example has been moved to the Enterprise Edition. However, we still have a version available for the Community. You can check it out [here](https://github.com/refinedev/refine/tree/master/examples/app-crm-minimal).
2+
13
[![Cover Image](https://refine.ams3.cdn.digitaloceanspaces.com/example-readmes/CRM/crm-readme-temp.png "Cover Image")](https://github.com/refinedev/refine)
24

35
<div align="center">

examples/app-crm/codegen.ts

-19
This file was deleted.

examples/app-crm/graphql.config.ts

-37
This file was deleted.

examples/app-crm/index.html

-13
This file was deleted.

examples/app-crm/jest.config.js

-30
This file was deleted.

examples/app-crm/jest.setup.ts

-24
This file was deleted.

examples/app-crm/netlify.toml

-4
This file was deleted.

examples/app-crm/package.json

-87
This file was deleted.

examples/app-crm/postcss.config.cjs

-6
This file was deleted.
-6.26 KB
Binary file not shown.

examples/app-crm/sandbox.config.json

-8
This file was deleted.

0 commit comments

Comments
 (0)