sintonia/docs
Lucas Bickel fba9a13214 Add testing.md to docs 2017-03-04 15:17:26 +01:00
..
_css Clarify some docs and improve code highlighting. 2017-03-03 13:28:36 -05:00
scripts Add basic Mkdocs config and initial docs. 2017-03-03 09:43:14 -05:00
README.txt Minor fixes for the name change Campcaster -> Airtime. 2011-01-07 17:17:23 -05:00
documentation.md Clarify some docs and improve code highlighting. 2017-03-03 13:28:36 -05:00
features.md Add basic Mkdocs config and initial docs. 2017-03-03 09:43:14 -05:00
index.md Clarify some docs and improve code highlighting. 2017-03-03 13:28:36 -05:00
install.md Clarify some docs and improve code highlighting. 2017-03-03 13:28:36 -05:00
testing.md Add testing.md to docs 2017-03-04 15:17:26 +01:00

README.txt

README
======

This directory should be used to place project specfic documentation including
but not limited to project notes, generated API/phpdoc documentation, or 
manual files generated or hand written.  Ideally, this directory would remain
in your development environment only and should not be deployed with your
application to it's final production location.


Setting Up Your VHOST
=====================

The following is a sample VHOST you might want to consider for your project.

<VirtualHost *:80>
   DocumentRoot "/home/naomiaro/airtime/public"
   ServerName airtime.local

   # This should be omitted in the production environment
   SetEnv APPLICATION_ENV development
    
   <Directory "/home/naomiaro/airtime/public">
       Options Indexes MultiViews FollowSymLinks
       AllowOverride All
       Order allow,deny
       Allow from all
   </Directory>
    
</VirtualHost>