Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 962 Bytes

README.md

File metadata and controls

39 lines (31 loc) · 962 Bytes

Dillar Academy Web App

This is a JumboCode Project for Dillar Academy to help manage classes and enrollments.

How to run

To run both client and server simultaneously:

npm run dev

To run just client:

npm run client

To run just server:

npm run server  # in root folder
npm run dev     # in api folder

Git Commands Guide

Branches

git branch                      # see current branch
git checkout [branch-name]      # switch branches
git checkout -b branch-name     # makes new branch and switches to that branch

Development

git pull                            # get latest changes from repo
git status                          # view files you've changed and what's staged
git add .                           # stage all current changes
git commit -m "[commit_message]"    # commit your edits with a message describing changes
git push                            # push your changes to the remote repo