A couple of friends and I made a full stack Trello clone using Django, React, and Redis. We would love it if you guys checked it out and wanted to contribute!

For further actions, you may consider blocking this person and/or reporting abuse
A couple of friends and I made a full stack Trello clone using Django, React, and Redis. We would love it if you guys checked it out and wanted to contribute!
For further actions, you may consider blocking this person and/or reporting abuse
Al - Naubit -
Ash Allen -
Charos1mm -
Armaan Gupta -
Once suspended, vdevired will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, vdevired will be able to comment and publish posts again.
Once unpublished, all posts by vdevired will become hidden and only accessible to themselves.
If vdevired is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Vikhyat Devireddy.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community π©βπ»π¨βπ» safe. Here is what you can do to flag vdevired:
Unflagging vdevired will restore default visibility to their posts.
Top comments (12)
Hi there, we encourage authors to share their entire posts here on DEV, rather than mostly pointing to an external link. Doing so helps ensure that readers donβt have to jump around to too many different pages, and it helps focus the conversation right here in the comments section.
If you choose to do so, you also have the option to add a canonical URL directly to your post.
Hey, how did you come up in using DecimalField in the order field and using this formula?
self.order = 2 ** 16 - 1
Also, do you have any idea on how to move several items at once without messing up the order? Thanks!
Hi, can you explain why you have used Redis? Did you need a message broker? I'm studying RammitMQ and I'm looking for message broker use cases, thanks! :)
Ps: I think is useful if you give a general overview about the project :)
Hey! We used Redis to store tokens for one-time links generated when you invite someone to join a project. We also used it to keep track of recently viewed boards. So we used Redis as a key-value store and not as a message broker. If you have any other questions, I'll answer them! Please do contribute to the project if you'd like
Awesome!!
Nice, never get bored of looking at Kanbans :)
Really nice!
Thank you!
Looks awesome!!
Thanks!
Looks nice, but i have a question how do you create notification system without celery ?
Made them via Django signals. Better to use celery I suppose.