All Questions
4 questions
-2
votes
2
answers
1k
views
Best practice: keep DB models in one file or split into modules?
I've a Python project with ~30 SQLAlchemy models and I'm not sure where they belong. All models belong to the DB but also to a module, so I'm not sure about the right namespace.
Here are some ideas:
...
0
votes
1
answer
590
views
To structure big and expandable project(s)
TLDR with bold
I want to create a library (I think this is the right term) for my own reinforcement learning environments (envs for short). Most of the envs would be based on self-implemented games ...
17
votes
3
answers
30k
views
best way to install local package into docker image
I have a python package that I wrote and I want to use it within multiple docker builds.
However, I can't just install my local package situated outside of Dockerfile folder. And I don't want to ...
6
votes
4
answers
5k
views
Front-end structure of large scale Django project [closed]
Few days ago, I started to work in new company. Before me, all front-end and backend code was written by one man.
As you know, Django app contains two main directories for front-end: /static - for ...