Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmsrs/cmsrs3-react
CMS system with online shop module Laravel and React Redux
https://github.com/cmsrs/cmsrs3-react
cms cms-backend react react-redux reactjs shop shopping shopping-cart
Last synced: 29 days ago
JSON representation
CMS system with online shop module Laravel and React Redux
- Host: GitHub
- URL: https://github.com/cmsrs/cmsrs3-react
- Owner: cmsrs
- License: mit
- Created: 2019-05-16T14:07:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T15:48:03.000Z (about 2 years ago)
- Last Synced: 2023-08-04T03:07:32.768Z (over 1 year ago)
- Topics: cms, cms-backend, react, react-redux, reactjs, shop, shopping, shopping-cart
- Language: JavaScript
- Homepage: http://www.cmsrs.pl/en/cms/cmsrs/about-cmsrs
- Size: 4.21 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cmsRS react client
* create server site from:
* change SERVER_URL and API_SECRET in file
```bash
src/config.js
```* MENU_VISIBLE - tabs visible in menu
example:
```bash
export const SERVER_URL = 'http://127.0.0.1:8000';
export const API_SECRET = '';
export const MENU_VISIBLE = ['pages', 'users', 'products', 'checkouts', 'contacts', 'settings'];
```Directive API_SECRET should be the same as on file .env
on the server site* install dependency
```bash
npm install
```* start app
```bash
npm start
```* build app
```bash
npm run build --path admin
cp -r build admin
cp -r admin /public
```