#app & api project management

6 messages · Page 1 of 1 (latest)

rare river
#

if im coding a web app that also has a backend api, what is the ideal way to store both under the same project name/repo? i was debating on either an app and api folder, or having them on seperate branches (an app and api branch), would just like to hear peoples opinions thanks 👍

crystal nymph
#

Branches should be for parallel development of the same code base.

Either you'd have two repos or you'd have two folders in the same repo.

If the code for both needs to be deployed together then I'd do both in the same repo. If not it's up to you.

rare river
#

will probs just deploy both together

#

any problems i might encounter with 2 folders? like security issues ect

crystal nymph
#

File structure isn't generally exploitable

#

Should be fine