A tool to more easily manage Content View Versions in Katello, a Foreman Plugin.
Authors:
Jason Kiesling - [email protected]
Kevin Huang - [email protected]
Evan O'Malley - [email protected]
Max Rider - [email protected]
Advisors:
Dr. James Daly - [email protected]
Ian Ballou - Red Hat
- Install Node.js (a JavaScript Runtime) via NVM. Follow the direction from the NVM website to install it on your OS.
- Run
nvm install --lts
to install Node. - Install Git.
- Install VSCode.
- Add the following extensions to VSCode.
- NPM Intellisense
- GitLens
- ESLint
- Prettier
- Install React Dev Tools in Google Chrome.
- Visit github.com/jasondkiesling/foreman-katello-cvv. In the top right corner, click "Fork" and follow the directions.
- On your computer, run the following commands. (This requires git to be installed.) (If using SSH keys, replace the HTTPS URL with your SSH URL.)
git clone https://github.com/[your-username]/foreman-katello-cvv.git cd foreman-katello-cvv git remote add upstream https://github.com/jasondkiesling/foreman-katello-cvv.git
- Run
npm install
to download required packages. - Run
npm start
to start the server. - Navigate to http://localhost:3000 in your browser to see your local server!