Skip to main content
The 2024 Developer Survey results are live! See the results

How is the release process that you use in your work or personal projects?

Created
Active
Viewed 143 times
3 replies
1

Hello everyone, I have a question about your day-to-day work. I work as a software engineer, and at my company, we have an internal tool that facilitates the release process for the features we develop, making it easier to deploy features to production. This makes it far from the tools or methods that exist today outside my company. What is the release process like at your companies or in your daily with your projects? From developing a feature locally to deploying it on AWS or GCP?

3 replies

Sorted by:
78714134
2

Well, to start with I make small projects on GCP specifically using GAS(Google AppScript). What I do generally is deploy the project once I'm happy with the changes from GAS only, it has a feature to maintain versions. I also maintain the changes in Github using clasp. I hope it helps you.

78714692
1

For my small projects on GCP using Google Apps Script (GAS):

I deploy the project once I’m happy with the changes using GAS’s versioning feature. I also maintain the changes in GitHub with `clasp` to keep track of versions and updates.

This captures your approach and might inspire others with similar tools or practices!

78726061
1

I have a Fabric 2 deployment tool which has generalised functions for deploying code (Python) and rsyncing config from an on premise server. This along with scripts for each kind of operation drives deployment, updating servers including load balancer and CouchDB stores.