You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To get a local development instance running on your computer:
Clone this repo
In the repo directory, do npm install
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