|
|
|
|
|
by iraldir
2558 days ago
|
|
If those services are made by me or my team, I would usually run them on my machine. However, if they are made by a different team, I usually create a mock server of sorts to be able to run it locally with no dependencies for most of the dev. This allows my team to not be dependant on other teams.
My flow is usually to work on this mocked server while I develop a feature, and then before making a pull request testing on the real thing.
I found a good 70% of the dev work I do can be done in those conditions.
Of course, that's something you'll be able to pull on a greenfield project, not on an existing giant codebase with billions of API. |
|