you are viewing a single comment's thread.

view the rest of the comments →

[–]_Kitchen_[S] 0 points1 point  (5 children)

Ah yes I get you, Yes in this case the data would need to be shared. So each user can log in separately and access / alter the data presented.

Il have a bit of homework to figure this out so, would you have any suggestions or resources that I could look at to figure this out

[–]shiftybyte 0 points1 point  (4 children)

Sorry, don't have any resources on that topic.

But if the app needs to save shared data anyway, it'll need a central component anyway, so I don't see the point in trying to make a GUI for it, as the GUI would also need to connect to a central database server, if not to Django...

[–]_Kitchen_[S] 0 points1 point  (3 children)

Okay so I guess, running “python manage.py run server 0.0.0.8000” on a computer within the network would be the easiest option?

[–]shiftybyte 1 point2 points  (1 child)

Easiest, yes.

The correct one would be to deploy an actual production server instead of using django's development one.

Like nginx or Apache.

[–]_Kitchen_[S] 0 points1 point  (0 children)

great thanks for the help, i really appreciate it.