https://git.generalassemb.ly/WebDev-Connected-Classroom/Project-4/blob/master/README.md
We will be creating a basic internet forum that will have threads and posts within those threads. Once this has been achieved, more features will be added as seen fit.
Discord Server: The War Room: https://discord.gg/2dSnwCN
The link above is set to never expire in case you are accidentally removed from the server.
git checkout -b <enter_subject_branch_name_here>
This will create a new branch and switch to it, a production branch.- Proceed with coding.
git add .
git commit -m "enter_subject_dev_message_here"
git checkout master
This will switch you back to the master branch on your local machine.git pull
This will update your local master branch with the most recent version of the remote repo master branch.git checkout <enter_subject_branch_name_here>
This will switch you back to your production branch.git push
This will allow you to update your production branch on the local repo and make merge requests.
OP = Original Post
-
Landing page containing OP's
- Create OP
- Delete OP
-
Comments within OP's
- Create Comments
- Delete Comments
- Edit Comments
Trello Board: https://trello.com/b/xFp2XG5b/full-crud-django-react
- Team Django:
- Erica - Person B
- Michael - Person A
- Team React:
- Ben - Person 2
- Patrick - Person 3
- Version Control:
- Eric - Person 1
id | title | body | author | creation_date |
---|
id | Thread.id | body | author | creation_date |
---|
ACTION | METHOD | NAME |
---|---|---|
/threads/ | GET | index |
/threads/new | GET | new |
/threads/ | POST | create |
/threads/int:id | GET | show |
/threads/int:id | DELETE | delete |
ACTION | METHOD | NAME |
---|---|---|
/posts/ | GET | index |
/posts/new | GET | new |
/posts/ | POST | create |
/posts/int:id | GET | show |
/posts/int:id/edit | GET | edit |
/posts/int:id | PUT | update |