This repository contains a simple project with the files needed to start an application user react and parse server.
Make sure you have docker and docker-compose installed. If not, follow this page
Clone this repository:
git clone https://github.com/filipmanole/react-parse-starter
To start using the project prepare the .env file. You can start from the existing .env.sample:
cp .env.sample .env
vim .env # edit the file; set the variables properly
Use the following command to create a react application inside de frontend directory:
npx create-react-app frontend/react-app
After the you set the variables in .env file, start the reverse-proxy:
docker-compose up
After the docker compose was completed successfully, you should be able to access the following links (using default ports):
- http://localhost:3000/ - react application
- http://localhost:4040/ - parse dashboard
The frontend container is configured to use React. It can be modified to use the desired framework.