-
Notifications
You must be signed in to change notification settings - Fork 0
GifART: Installation and Configuration
ranakan19 edited this page Apr 26, 2019
·
3 revisions
No separate installations required. We have deployed it on heroku - https://wbdv-sp19-gif-art-server.herokuapp.com/.
If you want to run it locally, you can check it using postman - https://www.getpostman.com/collections/d99d2039c716dc3b3063
Object Relation Models: There can be 4 type of users - Anonymous, Admin, Normal User, Content Creator. Domain Objects - GIF, COMMENT
One-Many :
- User to User : Do not have this relation. Compensated with extra feature - social login (login with google)
- User to Domain: One User can make multiple comments on any gif.
- Domain to Domain: One gif can have multiple comments.
Many to Many :
- User to User : followers : one user can follow other users while can be followed by others.
- User to Domain: A user like many gifs and a gif can be liked by many users.
- Domain to Domain: Do not have this, compensated with extra feature - forgot password.
Team Dracarys