deployment

Can I deploy a ClickOnce application via CD, and update via Web?

人走茶凉 提交于 2020-01-01 02:49:07
问题 We have a vendor application that we extend and deploy via ClickOnce. The vendor also provides a 'Deployment Manager' which packages the app and any extensions into a ClickOnce deployment that we publish to a web server. I mention this detail so that it's understood we don't really have great control over changing the deployment process. So, we publish the application to our web server. That works fine, and updates work correctly. On loading the application, it will prompt the user if they

Why I am getting Could not find multi_json-1.3.1 in any of the sources?

荒凉一梦 提交于 2020-01-01 02:45:09
问题 I have a simple Rails application I want to deploy to Heroku. When I run the below command git push heroku master The below error message is displayed. Could not find multi_json-1.3.1 in any of the sources ! ! Failed to install gems via Bundler. ! ! Heroku push rejected, failed to compile Ruby/rails app Here is my Gemfile gem 'rails', '3.2.3' gem 'pg' group :assets do gem 'sass-rails', '~> 3.2.3' gem 'coffee-rails', '~> 3.2.1' gem 'therubyracer', :platform => :ruby gem 'uglifier', '>= 1.0.3'

Deployment project not updating .exe

∥☆過路亽.° 提交于 2020-01-01 02:45:08
问题 I have a Winforms project with a single .exe file as the primary output. I'm using a deployment project to distribute it, but the .exe file is not being updated when the new version is installed, meaning I have to ask the users to manually uninstall and then install the new version. Here's what I'm doing: I increment the assembly version on the output project (which is the primary output of the deployment project) I increment the deployment project version (and update the product code when

How do I deploy an Angular.js app?

烂漫一生 提交于 2019-12-31 20:08:43
问题 This may be a stupid question, but I'm wondering what platform I should use to deploy my Angular.js app? I tried using Heroku but got a "no Cedar-supported app detected" error. Any thoughts? UPDATE I'm trying to serve this to heorku as a Node.js application, but still can't seem to get it working. There's a web-server.js file in the root directory of my application and I reference it in my Procfile here: web: node web-server.js And here's my package.json file, also in the root directory: {

How do I deploy an Angular.js app?

六月ゝ 毕业季﹏ 提交于 2019-12-31 20:07:12
问题 This may be a stupid question, but I'm wondering what platform I should use to deploy my Angular.js app? I tried using Heroku but got a "no Cedar-supported app detected" error. Any thoughts? UPDATE I'm trying to serve this to heorku as a Node.js application, but still can't seem to get it working. There's a web-server.js file in the root directory of my application and I reference it in my Procfile here: web: node web-server.js And here's my package.json file, also in the root directory: {

What is the definition of a staging environment when developing web applications?

天涯浪子 提交于 2019-12-31 10:41:16
问题 When developing a web application for others, multiple environments for testing are a good idea. However, different development teams have different definitions for the meaning of each environment. Currently, I like to keep it simple, and have a development environment (my local machine), a staging environment (someone before I deploy my app to the world), and then to production. Although there may be value in more environments, I'm going to be sticking with these three for now. My main

Jenkins: Use Archived Artifact in Promoted Build

≡放荡痞女 提交于 2019-12-31 10:39:09
问题 I've archived an artifact as the last step of the build and it's available as something like this: https://xxx.ci.cloudbees.com/job/xxx/52/artifact/target/xxx-1.2.1-SNAPSHOT-r8304-20130807-1507-app.zip How can I easily access the artifact in my promotion process? Please note that I need to access the specific build, not the latest successful one. The goal of the promotion process is to copy the artifact to S3 from where our deployment job will further process it. So I might promote build #52

Maven: Trying to Deploy with credentials in settings.xml file

你离开我真会死。 提交于 2019-12-31 09:12:20
问题 This seemed to be working last week and now it doesn't. We use Artifactory as our Maven repository. I am deploying a jar and pom using the deploy:deploy-file goal Our Artifactory repository requires authentication to deploy. I can deploy to the repository by embedding my credentials in the server URL on the command line: $ mvn deploy:deploy-file \ -Durl=http://deployer:swordfish@repo.veggiecorp.com/artifactory/ext-release-local \ -Dfile=crypto.jar \ -DpomFile=pom.xml \ -Did=VeggieCorp yadda..

Maven: Trying to Deploy with credentials in settings.xml file

微笑、不失礼 提交于 2019-12-31 09:11:11
问题 This seemed to be working last week and now it doesn't. We use Artifactory as our Maven repository. I am deploying a jar and pom using the deploy:deploy-file goal Our Artifactory repository requires authentication to deploy. I can deploy to the repository by embedding my credentials in the server URL on the command line: $ mvn deploy:deploy-file \ -Durl=http://deployer:swordfish@repo.veggiecorp.com/artifactory/ext-release-local \ -Dfile=crypto.jar \ -DpomFile=pom.xml \ -Did=VeggieCorp yadda..

Deploying with Git/Github

我只是一个虾纸丫 提交于 2019-12-31 08:47:20
问题 We are trying to setup an automated deployment environemt with Git/Github. We have 3 different environments; local, test and live. When we add a new feature on local, we first upload files to test server to test the newly created feature. If everything is OK, we than upload all files to live server. But this "uploading" process is not a perfect solution, as we sometimes forget to upload some files. Btw we also have mobile app on iPhone and Android, so mobile may be the fourth environment for