This is the code for the team #4 website for CS577 F19.
This project is built by CircleCI, and any commit to the master
branch will trigger deployment to the production site. Please use caution when merging with master
!
.
├── .circleci [1]
├── .git [2]
├── .gitignore [3]
├── CMN
├── Development
├── Exploration
├── FD
├── Foundations
├── PR
├── README.md
├── Valuation
├── css [4]
├── images [5]
├── index.html
├── node_modules [6]
├── package-lock.json [7]
├── package.json [7]
└── vendor [6]
[1] CI/CD files for easy deployment to USC server
[2] Version control files
[3] Files to be excluded by Git
[4] Stylesheets for the website to look nice
[5] Various images for the website, including team member headshots
[6] JavaScript dependencies to make building the site easier
[7] Determines which dependencies to include in project
- Get the code:
$ git clone git@github.com:kgrimes2/CS577a-Fall2019-Team04.git
$ cd CS577a-Fall2019-Team04
- Build
$ npm install
- Test
$ npm test
- Fork the code
- Create a feature branch
- Make your changes
- Open a pull request