Questions tagged [web-deployment]

The activities that make a website available for use on a remote system.

After a website is successfully developed, it can be deployed into a web server so that it can be used. The activities that make a website available for use if called web-deployement

4762 questions
572
votes
25 answers

How can I update the parent's state in React?

My structure looks as follows: Component 1 - |- Component 2 - - |- Component 4 - - - |- Component 5 Component 3 Component 3 should display some data depending on state of Component 5. Since props are immutable, I can't simply save its…
Wojciech Kulma
  • 6,186
  • 3
  • 18
  • 27
148
votes
25 answers

H14 error in heroku - "no web processes running"

error H14 happen while deploying to heroku this is my procfile: web: gunicorn -w 4 -b 0.0.0.0:$PORT -k gevent main:app log on heroku: 2017-01-23T10:42:58.904480+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET…
Ron Miles
  • 1,503
  • 2
  • 11
  • 6
144
votes
25 answers

Error CS1705: "which has a higher version than referenced assembly"

I've been looking into this for a bit now and haven't gotten it resolved. I get the following error message: Compiler Error Message: CS1705: Assembly 'My.Model, Version=1.1.4422.23773, Culture=neutral, PublicKeyToken=bfde95ba233094b2' uses…
jbizzle
  • 1,495
  • 2
  • 11
  • 11
130
votes
7 answers

How do you include additional files using VS2010 web deployment packages?

I am testing out using the new web packaging functionality in visual studio 2010 and came across a situation where I use a pre-build event to copy required .dll's into my bin folder that my app relies on for API calls. They cannot be included as a…
Jason
  • 2,701
  • 2
  • 25
  • 35
104
votes
10 answers

allowDefinition='MachineToApplication' error when publishing from VS2010 (but only after a previous build)

I can run my Asp.Net MVC 2 application without an issue on my local computer. Just Run / Debug. But if I have already built it, I can't publish it! I have to clean the solution and publish it again. I know this is not system critical, but it's…
Dan
  • 12,808
  • 7
  • 45
  • 54
86
votes
6 answers

How to package & deploy Node.js + express web application?

I am new to Node.js programming and I have recently created a sample working web application using (express, backbone & other complimentary view technologies, with mongoDB). Now i am at a point where I want to deploy the same on a staging…
KBJ
  • 910
  • 1
  • 7
  • 8
81
votes
11 answers

Web deployment task failed. (The type initializer for 'Microsoft.Web.Deployment.DeploymentManager' threw an exception.)

I am getting the following error when I use web deploy from visual studio 2010. Web deployment task failed. (The type initializer for 'Microsoft.Web.Deployment.DeploymentManager' threw an exception.) I suddenly started getting this error! I…
coder
  • 877
  • 2
  • 10
  • 11
80
votes
3 answers

Curl retry mechanism

I have a script I run to deploy two web services and a front-end application. The script calls a method that checks to see if the two back-end services are up and running. If so, deem the deploy successful, otherwise revert. The two services…
TheCoder
  • 8,413
  • 15
  • 42
  • 54
76
votes
7 answers

MSBuild target package not found

I want to package my VS2010 web application project ready for deployment with msdeploy. On development machine I can do this using: MSBuild.exe "C:\path\to\WebApp.csproj" /target:package But on my build server I get this error: error MSB4057: The…
Andrew Davey
  • 5,441
  • 3
  • 43
  • 57
75
votes
9 answers

Automated heroku deploy from subfolder

I know you can deploy automatically to heroku from github, but I haven't found a way to only push a subfolder from github to heroku. From the command-line I know it is possible to do this with: git subtree push --prefix heroku…
Divino Neto
  • 798
  • 1
  • 6
  • 8
75
votes
6 answers

jQuery - Sticky header that shrinks when scrolling down

I wonder how to make a sticky header shrink(with animation) when you scroll down the page and goes back to normal state when the page is scrolled up to the top. Here are two examples to…
user2362529
  • 755
  • 1
  • 6
  • 7
70
votes
1 answer

How To Compile An Electron Application To A .exe

I've been learning how to create applications in Electron and I need help compiling a simple project to a Windows executable. The program is a clone from this Github repo: https://github.com/electron/electron-quick-start. On the repo readme it shows…
67
votes
4 answers

What alternatives are there to ClickOnce?

I've used ClickOnce a lot over the years, but I have run up against a lot of its limitations. What alternatives are there for web deployment? So far the only one I've been able to turn up is ClickThrough, which is part of WiX now on the back burner.…
ScottB
  • 1,363
  • 2
  • 14
  • 24
64
votes
5 answers

How to edit code in a Docker container in development?

I have all my websites' code under /srv in my containers. My Dockerfile downloads the code using git and makes it part of the image for easier deployment to production. But then how do I edit the code in development? I thought using volumes was the…
ChocoDeveloper
  • 14,160
  • 26
  • 79
  • 117
52
votes
2 answers

Docker : How To Dockerize And Deploy multiple instances of a LAMP Application

I need to deploy many instances of the same LAMP (or LEMP) application : each instance will be accessible from a subdomain, with front loadbalancer/ proxy each instance must have its own db data and files data. each instance might be…
Koryonik
  • 2,728
  • 3
  • 22
  • 27
1
2 3
99 100