This is the frontend part of the pallet calculator web application, it is built with create-react-app
.
Find the backend part of it here: https://github.com/lyonsun/pallet-calculator-backend
git clone git@github.com:lyonsun/pallet-calculator-frontend.git
yarn
touch .env.development.local
echo REACT_APP_BACKEND_URI=http://localhost:8000/api > .env.development.local
Change
http://localhost:8000/api
to the one you defined. This app is built to connect a backend that is built withdjango
anddjangorestframework
. Check the backend part for more details.
yarn cra-start
yarn build
yarn start
Open the browser and go to http://localhost:3000