deployment

Alpha, Beta, Snapshot, Release, Nightly, Milestone, Release Candidate(RC)… When to use which terminology

巧了我就是萌 提交于 2019-12-20 21:54:14
问题 As a build, release and deployment engineer, there are multiple types of releases as below: Alpha Beta Snapshot Release Nightly Milestone Release Candidate(RC) [Anything else] Would like to know the difference between them and the significance. 回答1: Alpha The alpha phase of the release life cycle is the first phase to begin software testing (alpha is the first letter of the Greek alphabet, used as the number 1). In this phase, developers generally test the software using white-box techniques.

howto: elastic beanstalk + deploy docker + graceful shutdown

◇◆丶佛笑我妖孽 提交于 2019-12-20 21:46:21
问题 Hi great people of stackoverflow, Were hosting a docker container on EB with an nodejs based code running on it. When redeploying our docker container we'd like the old one to do a graceful shutdown. I've found help & guides on how our code could receive a sigterm signal produced by 'docker stop' command. However further investigation into the EB machine running docker at: /opt/elasticbeanstalk/hooks/appdeploy/enact/01flip.sh shows that when "flipping" from current to the new staged container

Deploying to Heroku with sensitive setting information

。_饼干妹妹 提交于 2019-12-20 19:44:18
问题 I'm using GitHub for code and Heroku for the deployment platform for my rails app. I don't want to have sensitive data under Git. Such data include database file settings (database.yml) and some other files that have secret API keys. When I deploy to heroku, how can I deal with files that are not under revision control. When I use Capistrano, I can write some hook methods, but I don't know what to do with Heroku. 回答1: For Heroku, you'll need to have database.yml under Git because Heroku will

“Invalid Host Header” in When running React App

萝らか妹 提交于 2019-12-20 18:35:18
问题 I am having one simple project of React JS and I am deploying into OSE. Also I am using below dependencies in my project. "webpack": "^2.2.0", "webpack-dev-server": "^1.14.1", "react": "^15.5.4", "react-router-dom": "^4.1.1" also I am running my project through below build script. "build": "SET NODE_ENV=production && webpack-dev-server --host 0.0.0.0 --inline --history-api-fallback --content-base . " Everything goes fine in OSE and Webpack is compiled successfully. But on accessing the url it

War deployment on Tomcat takes ages

坚强是说给别人听的谎言 提交于 2019-12-20 18:30:21
问题 I have a Grails application, built to a war file (~30mb). When I attempt to deploy the war file on Tomcat 6 via the application manager, it takes upwards of 10 minutes to deploy, or hangs indefinitely. When it hangs I can restart Tomcat and the app is usually deployed, however sometimes I have to repeat the process. I've also noticed that during deployment, the Java process maxes out the CPU and the RAM is at ~10-15%. I'm fairly new to Java, so I don't know if this is normal, but I can't

How to set up your own PEAR Channel?

馋奶兔 提交于 2019-12-20 18:29:56
问题 I am looking for instructions on how to setup a PEAR channel for our project so that we can deploy it with the pear installer. I have searched the web for a while and cannot find any straightforward information. I followed this tutorial for a while, but I am having a hell of a time getting this to work. Does anyone know how to do this? Is there a simpler way? 回答1: It looks like you are one of the few people who want to do this. That tutorial you linked to appears to be the latest (!) but the

Firebase hosting - force browser to reset cache on new deploys?

荒凉一梦 提交于 2019-12-20 17:41:12
问题 I have a site built with create-react-app and hosted on Firebase Hosting. What can I do to specify the browser cache needs to be updated after new deploys, and ideally only for pages, assets, and stylesheets that have been changed since the last deploy? Is there a way to access the deploy id and include that (or any other unique identifier) in the headers so the browser can compare to what it has in local storage or cache and determine whether a hard refresh is necessary? I looked over the

Build an installer for .NET app that can run on Windows and OS X?

醉酒当歌 提交于 2019-12-20 17:36:15
问题 I am surprised I could not find this question already asked, so if I simply missed it please notify promptly. I need to write a very small, fairly simple application in .NET that will be downloaded by end-consumers and installed on their system. Silverlight's sandbox model will not work - it has to be a full-on downloaded, installed executable. Here's what I know: I've developed applications which run in a controlled desktop environment - for example, an IT app that runs on a hundred internal

Capistrano - How to deploy to multiple cloud servers

淺唱寂寞╮ 提交于 2019-12-20 16:49:14
问题 I've heard that Capistrano supports deployment to multiple servers, but I haven't found a practical way to set it up. When I say multiple servers I mean servers running the same application in a production environment. At any time I would like to deploy to 5 or 10 servers if that is what I'm currently using. Thank you. 回答1: Using multiple servers is one of the main reasons to use capistrano versus just doing things by hand. Your deploy.rb just needs to define what actions should be performed

.NET CF 3.5 mobile app building slowly in VS 2008

纵然是瞬间 提交于 2019-12-20 15:32:50
问题 I have been working with a Windows Mobile 6 app that is built with .NET Compact Framework 3.5 in Visual Studio 2008. The application builds incredibly slow, spending a majority of the time doing the PlatformVerificationTask. How do I speed up the build? 回答1: The best way to stop the PlatformVerificationTask in a distributed development environment I would suggest adding the following to the mobile app's project file: <Target Name="PlatformVerificationTask"> </Target> This will overwrite the