I created e-commerce web application using Django
.
Before I deploy my application ver2, I have to create items (datas) to sell. (ver1 is running now)
Because of one-to-many
, many-to-many
relations among the models, it is much easier to create item datas via django-admin
page than other methods.
Problem is though, if I run this application on production server, it can be accessed through internet even though all items are not ready!!
How can I deal with it?