deployment

Dynamically choose between per-user and per-machine installation [duplicate]

天涯浪子 提交于 2020-01-03 02:21:57
问题 This question already has answers here : Specify the registry uninstall key location/hive via [Code] (2 answers) Make Inno Setup installer request privileges elevation only when needed (2 answers) Closed 2 years ago . I'm using Inno Setup to deploy an application. For most cases, a per-user installation that doesn't require admin privileges is fine. However, there are scenarios where I need to install the app for all users, e.g. for Citrix or TSE. Unfortunately it doesn't seem possible to

How can I make uploadArchives dependent on another task?

心已入冬 提交于 2020-01-02 19:28:39
问题 I have the following in my build.gradle : afterEvaluate { project -> uploadArchives { repositories { mavenDeployer { configuration = configurations.deployerJars pom.packaging = "aar" pom.groupId = project.CORE_GROUP pom.version = project.CORE_VERSION_NAME repository(url: "scp://" + project.CORE_MAVEN_URL) { authentication(userName: project.uploadUsername, privateKey: project.uploadKeyFile) } } } } } And I want it to be dependent on the following task: task checkProperties << { if (!project

How can I make uploadArchives dependent on another task?

不羁的心 提交于 2020-01-02 19:28:00
问题 I have the following in my build.gradle : afterEvaluate { project -> uploadArchives { repositories { mavenDeployer { configuration = configurations.deployerJars pom.packaging = "aar" pom.groupId = project.CORE_GROUP pom.version = project.CORE_VERSION_NAME repository(url: "scp://" + project.CORE_MAVEN_URL) { authentication(userName: project.uploadUsername, privateKey: project.uploadKeyFile) } } } } } And I want it to be dependent on the following task: task checkProperties << { if (!project

How to deploy a EAR app as zipped from Eclipse into Wildfly using JBoss Tools plugin?

给你一囗甜甜゛ 提交于 2020-01-02 19:26:18
问题 My operating system is Windows 7 64-bit. I am using Eclipse Luna. I have JBoss Tools 4.2.3.Final plugin. I am using Wildfly 8.2.1.Final in Standalone mode. I have a EAR app named TestApp . To publish it to Wildfly from Eclipse, in the Servers view, I right click on the Wildfly server to open the pop-up menu and click on Publish option. When I publish it to Wildfly from Eclipse, it is deployed as exploded in standalone\deployments directory i.e. a sub-directory named TestApp.ear is created in

cap deploy:setup hangs?

蹲街弑〆低调 提交于 2020-01-02 19:21:08
问题 Im having setup a empty git repo bare on the server side and everything setup. Cap deploy:setup does this [109.etc] env RAILS_ENV=production sh -c 'git clone git@109.etc:srv/paintings.git /srv/paintings/current' ** [out :: 109.etc] Initialized empty Git repository in /srv/paintings/current/.git/ ** [out :: 109.etc] The authenticity of host '109.etc (109.etc)' can't be established. ** [out :: 109.etc] RSA key fingerprint is e9:af:d6:d3:0e:f5:de:a3:4a:31:6e:8e:4a:c7:b7:ee. ** [out :: 109.etc]

How can I have teamcity run a .bat file on each successful build?

风格不统一 提交于 2020-01-02 18:40:08
问题 I have a teamcity (4.something) install that creates .wsp file for deployment to sharepoint. Currently I have to copy the wsp out of the build artifacts directory and into a little deploy folder I have created. In the folder I run a .bat that deploys the new .wsp to our test server. What steps can I take to automate this? Either copy the .bat into the artifacts folder and update the paths etc or copy from the artifacts folder into the 'deploy' folder and run the .bat from there. I am a

Managing application configuration in a chef environment cookbook

纵饮孤独 提交于 2020-01-02 13:26:30
问题 I am new to chef and have been struggling to find best practices on how to configure application configuration in an environment cookbook [source #1]. The environment cookbook I'm working on should do the following: Prepare the node for a custom application deployment by creating directories, users, etc. that are specific for this deployment only. Add initialization and monitoring scripts specific for the application deployment. Define the application configuration settings. This last

Tensorflow Model Deployment in GCP without Tensorflow Serving

大憨熊 提交于 2020-01-02 09:55:13
问题 Machine Learning Model: Tensorflow Based (version 1.9) & Python version 3.6 Data Input: From Bigquery Data Output: To Bigquery Production prediction frequency: Monthly I have a developed a Tensorflow based machine learning model. I have trained it locally and want to deploy it in Google Cloud Platform for predictions. The model reads input data from Google Bigquery and the output predictions has to be written in Google Bigquery. There are some data preparation scripts which has to be run

How to export environment variable on remote host with GitlabCI

我怕爱的太早我们不能终老 提交于 2020-01-02 09:44:14
问题 I'm using GitlabCI to deploy my Laravel applications. I'm wondering how should I manage the .env file. As far as I've understood I just need to put the .env.example under version control and not the one with the real values. I've set all the keys my app needs inside Gitlab Settings -> CI/CD -> Environment Variables and I can use them on the runner, for example to retrieve the SSH private key to connect to the remote host, but how should I deploy these variables to the remote host as well?