Please refrain from using this repository as we have migrated our web app to a new repository: openregistry-web
Parachute is the frontend for OpenRegistry, which is used for managing your container images in an easy to use UI.
This project is built using React (create-react-app), which means most of the dev/build process is similar to any React
Application out there. However, there's a minor difference. We use .env
file for loading the base url for our backend.
This helps us manage the backend that the frontend will use in an easy way. Here's what must be done to run this project
locally:
- Clone this project:
git clone https://github.com/containerish/parachute-ui.git
- Install all the required dependencies:
npm install # or yarn install
- Make a copy of the
env.example
file:
cp .env.example .env
Note that here you must make sure you have the OpenRegistry Backend running on your local system. If you follow this official link, you can find the instructions on how to run it.
- Finally, run the application:
npm start # or yarn start