Skip to content

Developer Information

Lucia Reynoso edited this page Sep 19, 2019 · 3 revisions

Setup

To get a local development instance running on your computer:

  1. Clone this repo
  2. In the repo directory, do npm install
  3. Type npm run dev to start the server. Changes to files will be automatically watched and recompiled.

Using Git and Github for development

feature_development_loop:

    # Create a new uniquely named private development branch

    git fetch
    git checkout master
    git checkout -b <user>/<new_unique_branch_name> origin/master

    # ... Do your work here. ...
    # ... git add / rm any files, etc ...

    git commit
    git push

    # Click to create pull request

    # After the pull request is approved and merged into master via github,
    # delete its branch from github, and...

    go to feature_development_loop

Clone this wiki locally