https://github.com/marmelab/react-admin-crm
A CRM build with react-admin, used as a demo for the capabilities of the framework
https://github.com/marmelab/react-admin-crm
crm oss react-admin
Last synced: 4 months ago
JSON representation
A CRM build with react-admin, used as a demo for the capabilities of the framework
- Host: GitHub
- URL: https://github.com/marmelab/react-admin-crm
- Owner: marmelab
- License: mit
- Created: 2021-05-03T20:51:04.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-03T17:25:49.000Z (4 months ago)
- Last Synced: 2025-02-17T02:53:26.443Z (4 months ago)
- Topics: crm, oss, react-admin
- Language: HTML
- Homepage: https://marmelab.com/react-admin-crm
- Size: 38.4 MB
- Stars: 61
- Watchers: 5
- Forks: 26
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Atomic CRM
[Atomic CRM](https://marmelab.com/atomic-crm/) is a CRM template built with [react-admin](https://github.com/marmelab/react-admin) and Supabse. You can test it online at https://marmelab.com/react-admin-crm.
https://user-images.githubusercontent.com/99944/116970434-4a926480-acb8-11eb-8ce2-0602c680e45e.mp4
This repo stores a local demo of Atomic CRM. React-admin usually requires a REST/GraphQL server to provide data. In this demo however, the API is simulated by the browser (using [FakeRest](https://github.com/marmelab/FakeRest)). The source data is generated at runtime by a package called [data-generator](https://github.com/marmelab/react-admin/tree/master/examples/data-generator).
To explore the source code, head to [marmelab/atomic-crm](https://github.com/marmelab/atomic-crm).
## How to run
This demo is a static website, so you just need a web server to serve the HTML, JS and CSS files. For example, with Python:
```sh
python3 -m http.server
```