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!

We're a place where coders share, stay up-to-date and grow their careers.
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!
Shoaib Akhtar -
Michael Bogan -
Iain Freestone -
Pete -
Discussion (11)
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.
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
Really nice!
Thank you!
Awesome!!
Nice, never get bored of looking at Kanbans :)
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.