I have a repo for my site I will call mysite. I then have a small django app I made called myApp. I think that myApp is kind of useful so I want other people to be able to download it and include it as a submodule in their apps. But I want to keep the repo inside mysite.
Currently I have a git repo for mysite and inside that I just have another git repo for myapp. I seem to be able to cd
into their respective directories and push/pull/edit changes just fine. However, I haven't done anything to set one up as a submodule of the other. Is that something that I need to do? Or is that only if I am using somebody elses module inside mysite and am not going to be making changes to the module?