• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Deploying application onto server?

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is probably going to come across as a really stupid question, but I finished this standalone application which I've been asked to package up for deployment on the servers. The contents in my folder is all
my web stuff, HTML, JavaScript, CSS files etc. JavaScript is just plain JavaScript with a little jQuery.

I've only ever deployed one web app before, so can I just give them this folder of stuff and they can use straight away, or must I do something else. I have been using this on WAMP so I'm assuming they can
copy folder to the servers and use it away.
 
Saloon Keeper
Posts: 15484
363
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, you mentioned only HTML JavaScript and CSS, to host those all you need is a HTTP server. Are you using a server side language?

To prepare you software for deployment, you need to know the environment in which it will be running. Ask your clients.
 
sean cronin
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No there's no server side language involved. I just asked them and they said it will only be run in-house from their servers, so the files on their own is enough like you said. Man I should
really know this stuff but I keep second guessing myself:/

Thanks Stephan!
 
Stephan van Hulst
Saloon Keeper
Posts: 15484
363
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No problem
 
reply
    Bookmark Topic Watch Topic
  • New Topic