copenndthagen
copenndthagen

Reputation: 50742

Setup Apache server for testing a web app

I need to test my web application using the Apache web server. I need to do the testing on localhost.

What all steps do I need to follow for the setup? Like where to copy the testing folder locally, which files do I need to update in the Apache folder, etc

I have Apache2.2 running locally.

Thank you.

Upvotes: 0

Views: 674

Answers (1)

foxy
foxy

Reputation: 7672

No special setup is required. Sencha Touch is basically a Javascript file you include in your HTMLs.

Add them to your public directory (by default htdocs), and then its a matter of adding the following lines into your HTML file, and start programming with the Sencha Touch API !

<link type="text/css" rel="stylesheet" href="sencha-touch.css" >
<script type="text/javascript" src="sencha-touch-debug.js"></script>

Upvotes: 2

Related Questions