All Questions
6 questions
2
votes
1
answer
5k
views
Django - separation from the frontend (Templates)
Long story short, let's assume I want to create a webpage that would enable the users to sell used cars.
I am a beginner to webdev, so pardon my ignorance. Fun fact: two months ago I knew literally ...
3
votes
2
answers
785
views
What is the right time to go for Code Refactoring, not optimization?
I've been working on a Python(Django)/JavaScript(AngularJS) based application for some time now.(I learnt all of these on the way, had previously been a Java only programmer)and have hit moments where ...
1
vote
0
answers
71
views
Best way to handle access to web dashboard displayed on "dumb" screen
My web application has a dashboard page written in angularjs that is intended to be displayed on a screen in a room as a way of monitoring the information therein.
It's a dumb screen connected up to ...
2
votes
1
answer
6k
views
Populate User info between services on microservices architecture
I'm working on a microservices architecture which contains a couple a REST API as a services and a SPA as an interface. In addition, there are an "special" (is not speacial at all, it just special ...
4
votes
1
answer
1k
views
Separating AngularJs and Django into individual Apps?
I am building a web application using AngularJs and our web server is built in Python Django Rest Framework.
I would like to have the two projects separated and not coupled.
In my current setup the ...
7
votes
2
answers
6k
views
Decoupling Server and Client using REST API
I was thinking about how I can decouple a web-application completely into a server-side and a client-side component. I want to decouple the app to the extent that I can host both components on ...