deployment

Using GruntJS to filter which files get deployed

早过忘川 提交于 2019-12-23 05:41:51
问题 Currently the static resources we use are part of a web project in Visual Studio. There are certain files in the project that we want locally that we don't want being deployed to production. We manage this by using the .csproj file and seeing if a file is mark as "content" or "none" etc. (If it's marked as "none" it doesn't get pulled on the deploy). This works great however we are moving our development out of Visual Studio and into a more Javascript friendly IDE. However if we add or delete

Using GruntJS to filter which files get deployed

二次信任 提交于 2019-12-23 05:41:28
问题 Currently the static resources we use are part of a web project in Visual Studio. There are certain files in the project that we want locally that we don't want being deployed to production. We manage this by using the .csproj file and seeing if a file is mark as "content" or "none" etc. (If it's marked as "none" it doesn't get pulled on the deploy). This works great however we are moving our development out of Visual Studio and into a more Javascript friendly IDE. However if we add or delete

Rails 3.1 Production - Javascript loads, but doesn't execute

蓝咒 提交于 2019-12-23 05:33:08
问题 I've just uploaded my app to the heroku servers (with cedar stack) "http://hollow-waterfall-4266.herokuapp.com/" and I can see that the files load and are there, but they don't execute. The css-file is fine and working, but the javascript files aren't. I've looked at a lot of other posts, but nobody seems to have the answer and I have no idea of where to start to debug this. Any suggestions? 回答1: Your page is throwing "jQuery is not defined" errors. Your page's source looks like this: <script

Recommended way to deploy a war-file to a Tomcat using Jenkins?

廉价感情. 提交于 2019-12-23 05:23:35
问题 I am looking for the golden way how to automatically (re)deploy a war -file myPortal.war onto a Tomcat server using Jenkins, assuming the Tomcat is running on another machine with a Tomcat-manager running. The relevant powershell build step within my current Jenkins job is the following: $user = "foo" $pass = "bar" $secpass = ConvertTo-SecureString $pass -AsPlainText -Force $ServerURL = $ENV:Server $Path = $ENV:WORKSPACE $credential = New-Object System.Management.Automation.PSCredential($user

Deploying to heroku with clojure project, production environment issues

戏子无情 提交于 2019-12-23 05:08:59
问题 I have a picture gallery application I made from the "Web Development with Clojure" book and I am at the point of deploying it to Heroku. I have tried making it work as both a standalone uberjar and with trampoline. I tried to use environ in the beginning, but kept getting database value errors on "db-spec" so I stopped using it to make it run fine locally. I tried to set my own environment variables, and also to use a main.clj file. I edited my profile settings info and can get it to deploy

Can't find workflow deployed as WSP solution (when I deploy it from VS it works)

烈酒焚心 提交于 2019-12-23 04:51:09
问题 I am new to SharePoint, sorry if answer to my question is obvious. I am trying to deploy my very simple workflow as WSP package, it deploys without errors, I activate it, but I can't find my workflow and associate it with list. Could you help me, please, what I do wrong? I do it so: Create empty project Choose trust level as a Farm solution Add State Machine Workflow Choose list Workflow Associate workflow with list Task Create simple workflow Press CTRL-F5 in VS2010, and see that WF appears

Qt5 application deploy qwindows.dll search path order

吃可爱长大的小学妹 提交于 2019-12-23 04:40:17
问题 I am deploying our applications with needed DLLs in the same folder. plus qwindows.dll in platforms folder. That works really great, also machines without any Qt installations. Until yesterday, when I updated my Qt to 5.5.1. Now all applications which where once build with Qt 5.5.0 stopped working and are showing the well known error: "could not find or load the Qt platform plugin 'windows'". When i rename my Qt folder (C:\Qt) to something else, everything works again. Further investigation

How do I fix server Oops error when deploying Play Framework 2.0 application as a Windows service?

我的梦境 提交于 2019-12-23 04:09:12
问题 I was following the processes in this very helpful post: How do I run a Play Framework 2.0 application as a Windows service? when I ran into trouble in Step 9. When I execute runConsole.bat , the service cycles between the running and restarting states. The full log is here: wrapper.log but what jumps out at me in the log are the following: INFO|7268/0|play.core.server.NettyServer|13-12-28 13:07:28|Oops, cannot start the server. INFO|7268/0|play.core.server.NettyServer|13-12-28 13:07:28

Is there a way to create more than one deployment with msbuild on a single build?

为君一笑 提交于 2019-12-23 03:55:13
问题 I am using msbuild command line multiple times to create a deployment zip file for my dev / test / production websites. I have already configured the parameters and configuration xml for each one. I want to know if i can condense my 3 calls to msbuild down to one, and have it build all three at once? right now i have to run msbuild.exe myproject.sln /T:Build /p:DeployOnBuild=True /p:PublishProfile="Dev Server" msbuild.exe myproject.sln /T:Build /p:DeployOnBuild=True /p:PublishProfile="Prod

ASP.NET MVC application when deployed to IIS 7 in integrated mode using NHibernate data will not load

跟風遠走 提交于 2019-12-23 03:49:29
问题 We have built an ASP.NET MVC application which utilizes NHibernate, the MVCContrib version of StructureMap, and an onion architecture as outlined by Jeffery Palermo in ASP.NET MVC in Action. This application works well when running locally from Visual Studio 2008. The Index action on our Home controller loads a view which immediately pulls data from the database utilizing the tools as outlined above. When running on IIS 6 or in Classic Mode on IIS 7 this section of the page loads data. Of