Andrew Rhyne
Andrew Rhyne

Reputation: 5090

Complex Build/Project Management

My company is in the process of restructuring our repository using GIT. Basically, we will have:

How it needs to work:

I am currently developing a tool using Apache Ant and Ivy to automate this process along with building. Stuff will be pushed into (A) while it is also built and pushed into production. This process will run e2e tests and, if successful, continue on to automate documentation, compile source code, and deploy a built product into production. The real challenge comes with figuring out how to balance all of these different processes.

Now, on to the question. What I need to know is whether there are any development "models" out there that can handle this sort of pattern so that we aren't reinventing the wheel so to speak.

The technology we are talking about is HTML5, CSS3, JavaScript, with a websocket connection to the backend running on NodeJS. Thanks in advance.

EDIT

Also, if there are any ways to do this that doesn't involve repositories (code management tools for example), I would love to know. Thanks again

Upvotes: 2

Views: 134

Answers (1)

KurzedMetal
KurzedMetal

Reputation: 12946

Check git-flow, It describe a similar work flow (a bit more complex I think) as the one you want.

Upvotes: 3

Related Questions