Skip to content

Latest commit

 

History

History
77 lines (62 loc) · 1.67 KB

README.md

File metadata and controls

77 lines (62 loc) · 1.67 KB

Bitebody - Admin Panel Front-end

CECS 491A - Admin Panel front-end for BiteBody, created with React.js

Created by Bryan Rojas, Hector Mendoza, David Ibarra, Malik Coleman

Prerequisites

Downloading Application

  1. Ensure git is installed on computer. You can verify by running the following command on your terminal.
git --version
  1. Clone the GitHub repository.
git clone https://github.com/Bite-Body/bitebody-admin-panel.git

Verify Prerequisites

  1. Verify Node.js is installed.
npm -version

Running Application

  1. Change directory (cd) into the project folder.
cd bitebody-admin-panel
  1. Install Node.js dependencies.
npm install
  1. Running front-end client.
npm run start

Contributing

  1. Ensure the repository is cloned and you can change directory (cd) where it is located.
git clone https://github.com/Bite-Body/bitebody-admin-panel.git
  1. Pull the latest version from GitHub
git pull
  1. Create a branch for your changes. The name of the branch should be relevant to the work/changes being done.
git checkout -b "Bug-Fix"
  1. Add changes to your branch via git add command. "." character can be replace with a specific file if you don't want to add all changed files.
git add .
  1. Commit changes with a relevant message.
git commit -m "Bug-Fix: Fixed issue with login."
  1. Push changes to GitHub
git push origin HEAD
  1. Create Pull Request

  2. Send pull request to CECS 491A Discord Chat

  3. Wait for code review and someone else to approve your changes.

  4. Merge changes to master branch.