The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
296 views

Website deployment from SVN

Does anyone use SVN to deploy their websites? If you do, could you explain your setup process and workflow or provide a link to more information? Ideally, I'd like to be able to commit to SVN and then ...
4
votes
1answer
303 views

How can I version-control and deploy a website's static files while preserving timestamps?

I'm using NanoBlogger to generate a website that consists entirely of static files—no PHP or anything similar. I'd like to place the site under version control, which means managing both ...
2
votes
3answers
282 views

'Development dashboard' web application

I am not sure if something like this exists in that it is ready out of the box. I currently have some web space that I use for various projects, and I would like to setup an area for some friends and ...
1
vote
2answers
579 views

What is a deploy script?

Conversation: Me: How do we do the swap over though? Won't there be downtime no matter how we do it? X: Well, we will need to do a complete deploy script of all the steps that must be ...
1
vote
0answers
20 views

Installshield in VS2012 and deployment of web application in IIS7.5

I deployed a web application in IIS 7.5 using installshield. But after deploying the site I am facing below error on accessing the site from URL. HTTP Error 403.14 - Forbidden The Web server is ...
0
votes
0answers
9 views

Project not making publish zip at obj\Debug\Package\ [closed]

The setting looks OK. and the project is building fine but when I look for the NancyDemo.zip file it is not there, the Package directory never is created, I have tried for both debug and release ...
0
votes
0answers
186 views

tomcat serving static content with directory listings

I have tomcat 7 configured to serve static contents from a directory: <Host appBase="webapps" name="localhost"> ... <Context docBase="/var/projectA/static" path="/projectA/" /> ...