Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

containerish/parachute-ui

Repository files navigation

⚠️ THIS REPOSITORY IS DEPRECATED ⚠️

Please refrain from using this repository as we have migrated our web app to a new repository: openregistry-web


Parachute By OpenRegistry

What is this project:

Parachute is the frontend for OpenRegistry, which is used for managing your container images in an easy to use UI.

How to run this project locally?

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:

  1. Clone this project:
git clone https://github.com/containerish/parachute-ui.git
  1. Install all the required dependencies:
npm install # or yarn install
  1. 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.

  1. Finally, run the application:
npm start # or yarn start