You can use docker-compose to start app easily.
First of all, install docker-compose if you don't have it on your machine. Make sure you follow all prerequisites.
Secondly, you must create .env file in the root folder with content like this:
REACT_APP_API_URL=http://meetlane-api-dev:3030
Now, you can execute this command:
# build containers and run application
docker-compose up
If you want to stop containers, just use:
docker-compose stop
If you want to remove containers, use:
docker-compose down
./src/pages
folder contains all pages.
./src/components
folder contains useful components - building blocks of pages.
./src/hooks
folder contains useful hooks.
./src/store
folder contains logic for making requests and caching their results.
./src/utils
folder contains useful functions.