An example .env.example file is provided. Rename this file to env.development.local to get started.
REACT_APP_FEATHERS_PORT=3030
REACT_APP_SERVICE_NAME=books
REACT_APP_ATTRIBUTE=title
REACT_APP_LIST_SEARCH="Image%"
We do not include a feathers app by default, since everyone's use case may be differenct. Instead, just start your feathers app locally and connect it by changing the environment variables above.
Todo: Since people (myself included) are lazy, just link to an example feathers repo that uses the environment variables above.
# Go to the root of this repo
cd ..
# Install dependencies
yarn
# Build react-feathers locally
yarn workspace @fmbm/react-feathers build
# Start the example app
yarn workspace example startor, use a one liner...
cd .. && yarn && yarn workspace @fmbm/react-feathers build && yarn workspace example startThe example app should now be available on: http://localhost:1234