deployment

Deploy Mono application without Framework on Mac

不打扰是莪最后的温柔 提交于 2019-12-21 07:15:36
问题 I have a c#-program, that works well under Mono and on OSX, I also was able to create an app-directory for that program. Now I want to distribute it, but I don't want to force the user to install mono, since this is unusual under Mac (and has some side-effects, that I want to avoid). I already tried to build a bundle with mkbundle, but mkbundle doesn't work correctly under Mac. I should add, that I use GTK. What is the easiest way to build a compleley independent app under Mac? Is there any

How to ignore directories when running Django collectstatic?

南笙酒味 提交于 2019-12-21 06:47:22
问题 I am running a small test project with Django 1.3, Ubuntu 11.10, gunicorn and Nginx, everything in a virtualenv, and now I'm running collectstatic to get my static files into the directory that Nginx serves from. For simplicity's sake let's say my static directory is something like /home/user/static and my project is at /home/user/project When I go to /home/user/project I run: python manage.py collectstatic --noinput and it correctly copies static files from all the apps I have installed.

What's the right way to manage a release with SVN?

时光总嘲笑我的痴心妄想 提交于 2019-12-21 06:38:26
问题 My last employer had developed an elaborate system which sat on top of SVN to deal with ongoing development: ( change management ) look at bugs/issues and associate them with commits when making the commit by tagging the bug id number and ( release management ) tag items in SVN as part of a specific release based on the bug/issue tracking system. This second part had a workflow associated with it to get sign-off from users/management. Then, when it came time to do the release (usually every

Different ways to install windows phone application on device

大兔子大兔子 提交于 2019-12-21 06:27:02
问题 I have developed a windows phone 8 application. I have a developer account and unlocked device. Now I'm able to deploy/install the application in my phone through windows phone development sdk. Now I want to install this application in another device ( a device of my friend, who is in different location). I don't want to put this application in the app store. I want to mail the XAP file only to him. So is there any other way to install this (XAP file) application in his mobile. I am looking

Deploying Rails app with docker-compose

ε祈祈猫儿з 提交于 2019-12-21 05:16:12
问题 Currently I have pretty standard env: nginx + web(Rails) + worker(Sidekiq) + Postgres + Redis + Data Containers(File storage and DB storage). The deploy process looks pretty straightforward: - update source code; - rebuild container(s); - run migrations; - stop old and launch new containers; For web (rails) and data (pg) containers it would be something like this: docker-compose build && docker-compose run web rake db:migrate && docker-compose up -d . Are there any best practices and is this

Tomcat Hot Deploy to instance hosting several applications

て烟熏妆下的殇ゞ 提交于 2019-12-21 05:12:04
问题 My question is about deployment to a Tomcat server instance which hosts multiple applications and hosts application contexts for Struts, Spring, and Hibernate. I would like to deploy changes to one application without restarting my Tomcat server. As an example, many times in our firm we have to deploy new applications or versions of applications to our tomcat enviroment and the process could be: Move class and jsp to the exploded folder then the context reload itself, or Another scenario is

How to deploy a desktop JavaFx 2.0 application correctly using jnlp for 32 and 64 bit?

点点圈 提交于 2019-12-21 05:07:19
问题 I have a jnlp file for deploying my javafx 2.0 application, however, how do I make sure that the users have the correct javafx runtime (32 or 64 bit depending on the jvm present on the machine) and if not, download it and run the application. Assuming that the user does not have a javafx runtime currently installed, the problems that I'm facing mostly with a 64 bit machine with either 32-bit, 64-bit or both JRE's are: 1) The Javafx swing deployment guide mentions to use the <jfx:javafx

Launching a desktop application from a web site

本小妞迷上赌 提交于 2019-12-21 04:49:09
问题 Is it feasible to launch an application via a browser / URL? What are the options for doing this? I know the way to do it with IE and Windows (which usually doesn't work). Ideally, I would like this to be browser independent. Our application is RCP, so in theory Java Web Start could work, we would just have to do some significant changes to how we deliver our application to users, which I would like to avoid. Our web server code is currently all Java if that makes a difference. I pretty much

NHibernate MappingException: Could not compile the mapping document

戏子无情 提交于 2019-12-21 04:26:26
问题 On my dev web app NHibernate is working just dandy. When I precompile and deploy the site, I get a MappingException when the SessionFactory is created. Here's some info from the trace: NHibernate.Cfg.Environment 2010-07-15 09:20:59,577 [7] INFO NHibernate.Cfg.Environment [(null)] - NHibernate 2.1.2.4000 (2.1.2.4000) 0.452436832055471 0.232383 NHibernate.Cfg.Environment 2010-07-15 09:20:59,718 [7] INFO NHibernate.Cfg.Environment [(null)] - Bytecode provider name : lcg 0.522780409241957 0

How to Deploy to Intellij IDEA Tomcat Folder?

好久不见. 提交于 2019-12-21 04:01:17
问题 I use Intellij IDEA 11.1.2 Ultimate Edition. I run Tomcat 6 from Intellij IDEA. Beside my .war application I have another folder that has static HTML files. When I run tomcat manually from command line I put that folder under Tomcat's webapp folder and it automatically deploys it and works. However I want to debug my application so I want to run Tomcat from Intellij IDEA. I think that Intellij IDEA deploys tomcat applications into .IntelliJIdea11\system\tomcat folder. Where I can put my