This is the repository for the group project in CISC 3140 Summer Session 2 2019 class at Brooklyn College.
UnderDogs is an information hub for Brooklyn College Computer Science students and faculty. Users can share original content, ask for assistance from other students, find collaborators, and have discussions across an array of curated communities.
pip3 install flask
)requirements.txt
file:
pip3 install -r requirements.txt
requirements.txt
file using the command and push the file to Github.
pip3 freeze > requirements.txt
NOTE: API connectivity is implemented. Please be careful when editting files as some files are necessary in order to keep the connection running.
/app
folder and execute python3 app.py
Alternatively, you can fast track to the Signing In section
Register
buttonFirst, make sure you have the API running and you note down the url ie localhost:8080
username
password
git fetch
in order to update your current working branch with any recent commits pushed to the repo. This will help minimize the frequency at which your old code from another file overwrites the code that was recently updated in that file.The following method, known as Git Workflow, is ideally the way we should be approaching updates to the repo:
git checkout -b <branch-name>
. Essentially, the branch name tends to be a short but descriptive name of the task being done in that branch. git commit -am "<commit-message>" git push origin <branch-name>
This method of updating the app, known as the Git Workflow, decreases the oppourtunity for old code to rewrite new code.