CMake Error: The following variables are used in this project, but they are set to NOTFOUND. Please set them or make sure they are set and tested correctly in the CMake files: CERES_INCLUDE_DIR code example
Example 1: Error: It looks like you are passing several store enhancers to createStore(). This is not supported. Instead, compose them together to a single function.
import { createStore, compose, applyMiddleware } from 'redux';
import thunk from 'redux-thunk';
import reducers from '../reducers';
const composeEnhancer = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
const store = createStore(
reducers,
composeEnhancer(applyMiddleware(thunk)),
);
export default store;
Example 2: Permissions for 'xxx.pem' are too open. It is required that your private key files are NOT accessible by others.
chmod 400 mykey.pem