Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.79 KB

CONTRIBUTING.md

File metadata and controls

65 lines (42 loc) · 1.79 KB

Team Norms

Team values

  1. Assign scrum master and product owner every sprint
  2. All members will complete work on time
  3. Keep communication on the slack channel between stand ups to make sure we stay on the same page
  4. Attend daily stand ups
  5. If you are running into a blocker, let the group know during stand up and ask for help.
  6. Respect other team mates
  7. Be open to other team mates opinions and perspective

Sprint Cadence

2 weeks per sprint

Daily stand up

As a team we have agreed to meet (on Zoom or in person depending on group members schedules) every 2 days at 9 pm to discuss:

  1. What has everyone has done since last meeting?
  2. What everyone is planning on doing now?
  3. Any blockers?

If someone cannot come to the daily stand up, they will send an update in the slack channel.

Coding Standards

More specific details to come when we decide the technology we will be using to create our product. General coding standards:

  • VS Code will be our code editor
  • Always pull before you commit/push to avoid merge conflicts.
  • Do not push and commit code that is not 100% working.
  • Write comments inside of your code so other team members can follow your code.
  • Variable and function names should be easy to follow - don't use dummy variable names.
  • Clear

Other information

Instructions for setting up local development

You need visual studio code or some application to open this application written in JavaScript. Express.js back end and node.js front end.

Instructions for building and testing the project

Clone this repository then:

cd project-setup-sj-clarke

npm install (install all dependencies)

cd front-end

npm start

cd -

cd back-end

npm start

Then, the front end and back end should be running.

Front end: port 3000

Back end: port 5000