Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```