deployment

SVN Website Development and Deployment Solution

浪尽此生 提交于 2019-12-17 18:48:05
问题 Here is the situation: we have multiple developers with varying degrees of commandline experience and we are putting together a deployment solution for our websites. The production environment is 2 SUSE Linux boxes. The development environment is a SUSE Linux box as well. Each developer has/will have a copy of the SVN tree in their home directory for development and testing. The goal is to have a release system that is easy to use and easy to revert that will work with multiple production

react-native iOS app not showing static assets (images) after deploying

社会主义新天地 提交于 2019-12-17 18:40:03
问题 I have all my static images in a folder called "images" in the root of my project. However, after I run the following command to bundle my app, the app works but no image is shown. The command I use to bundle: ./react-native bundle --minify --entry-file index.ios.js --platform ios --dev false --bundle-output main.jsbundle --assets-dest ./assets Note that the assets folder is created and it has my images folder with all images ok. Can you help please? 回答1: The asset destination and the main

Ant error when trying to build file, can't find tools.jar?

不想你离开。 提交于 2019-12-17 18:12:08
问题 When I run ant it says: Unable to locate tools.jar. Expected to find it in C:\Program Files\Java\jre6\lib\tools.jar Buildfile: build.xml does not exist! Build failed What package can I use to download the file required > C:\Program Files\Java\jre6\lib\tools.jar I just downloaded this one: jre-6u19-windows-i586-s.exe but unfortunately it appears that it was not on it... 回答1: Java ships in 2 versions: JRE & SDK (used to be called JDK) The JRE in addition to not containing the compiler, also

Capistrano SSH::AuthenticationFailed, not prompting for password

 ̄綄美尐妖づ 提交于 2019-12-17 17:36:47
问题 I've been using capistrano successfully for a while now and all of a sudden in every project I've lost the ability to deploy. Environment: os X (Mavericks) ruby 1.9.3p194 rvm (locally, not on server) rails 3.2 and up RubyGems 1.8.25 I'm not using rsa_keys or anything I want capistrano to prompt for user and password. Suddenly it has decided not to ask for a password, but does ask for user. Then it rolls back and gives me the following error. [deploy:update_code] exception while rolling back:

How to automatically update an application without ClickOnce?

偶尔善良 提交于 2019-12-17 17:36:10
问题 For the project I am working on, I am not allowed to use ClickOnce. My boss wants the program to look "real" (with an installer, etc). I have installed Visual Studio 2012 Professional, and have been playing around with the InstallShield installer, and it definitely makes nice installers, but I can't figure out how to enable the application to "auto-update" (that is, when it starts up, checks to make sure that it is using the latest version). I have been asked to make a tiny change to the code

iOS App deployment without AppStore

心不动则不痛 提交于 2019-12-17 17:32:03
问题 I'm developping an App in my company. We want to distribute this App to our customers but without using the AppStore from Apple, is it possible? I heard about MDM (mobile device manager) but I'm not really sure if it will cover this need? I heard also about Enterprise developer license for in house deployment but if I'm understanding correctly it means the App can be deployed only inside my company and not to our customers, is it correct? Thanks for your clarifications. Seb 回答1: If you are

SVN checkout or export for production environment?

不羁岁月 提交于 2019-12-17 17:29:15
问题 In a project I am working on, we have an ongoing discussion amongst the dev team - should the production environment be deployed as a checkout from the SVN repository or as an export? The development environment is obviously a checkout, since it is constantly updated. For the production, I'm personally for checking out the main trunk, since it makes future updates easier (just run svn update). However some of the devs are against it, as svn creates files with the group/owner and permissions

How to build MSI package on a linux server?

限于喜欢 提交于 2019-12-17 17:28:08
问题 I have a windows desktop application which is currently available on a Linux server for download on user's machine. I want to automate the process of MSI packaging on the same Linux server using any EXE/DLL . I have an App.exe and App.txt file. Some information should be read from text file and injected into exe before creating an MSI package. This entire process has to happen dynamically in the Linux server only after the user clicks on download. Can anybody point me in the right direction

Can Maven collect all the dependent JARs for a project to help with application deployment?

非 Y 不嫁゛ 提交于 2019-12-17 17:26:00
问题 I'm just starting to use Maven, (evaluating it, really) and I need to be able to quickly generate a JAR file for my application and a directory with all the dependencies (for example, lib) so that I can deploy those two to be run in a stand-alone manner. Generating the JAR file with the proper manifest is easy, but I do not know how to get Maven to copy the dependencies for the current project into a lib directory that I can deploy. Since this is for a stand-alone Java applications, I am not

Step-By-Step ASP.NET Automated Build/Deploy

前提是你 提交于 2019-12-17 17:24:37
问题 Seems like there are so many different ways of automating one's build/deployment that it becomes difficult to parse through all the different scenarios that people support in tutorials on the web. So I wanted to present the question to the stackoverflow crowd ... what would be the best way to set up an automated build and deployment system using the following configuration: Visual Studio 2008 Web Application Project CruiseControl.NET One of the first things I tried was to have CCnet