Open Logan1x opened 4 years ago
Would you mind if I took this? This doesn't seem too difficult to do
Actually I think I'm a bit confused about what needs to happen. I see this was / is a nucleotide sequence generator? Is that still what this project is achieving?
@dragid10 This project is different from nucleotide seq generator, I forked that repo and made changes on that so you will see code from that repo, but I want to start this from scratch.
This project is supposed to help my friend who wants to input order number on a webpage and show that order on another route(webpage).
@Logan1x do you want the order numbers to be persisted somewhere? Or could they be in memory?
Also is the /orders
page only supposed to display one order number at a time?
Lastly, I assumed you want the /orders
page to update the latest order number without having to manually refresh the page?
do you want the order numbers to be persisted somewhere? Or could they be in memory?
For the version 1, I do not want to store the orders.
Also is the /orders page only supposed to display one order number at a time?
How about the latest order with big size(like h1) and last 4 with small (h4), but for this we need to store last 4 orders too. So it's fine, if you to leave it for version-1 and just implementing the latest order.
Lastly, I assumed you want the /orders page to update the latest order number without having to manually refresh the page?
Yes
So this project is supposed to help my friend who wants to input order number on a webpage and show that order on another route(webpage). So anytime new order comes, the order number on the other page should be changed(reflected).