sintonia/docs
Lucas Bickel 187afcb206 Add converted 2.5.x manual on top of pro manual
I tried to only merge what makes sense for us, there is still quite some cleanup needed, this commit tries to preserve the 2.5 manual as much as possible while still keeping the rare new stuff from pro.
2017-03-05 13:17:49 +01:00
..
_css Remove background-color completely 2017-03-04 15:27:21 +01:00
manual Add converted 2.5.x manual on top of pro manual 2017-03-05 13:17:49 +01:00
scripts Add basic Mkdocs config and initial docs. 2017-03-03 09:43:14 -05:00
documentation.md Make examples copy/paste friendly 2017-03-04 15:30:05 +01:00
features.md Add basic Mkdocs config and initial docs. 2017-03-03 09:43:14 -05:00
index.md Make examples copy/paste friendly 2017-03-04 15:30:05 +01:00
install.md Make examples copy/paste friendly 2017-03-04 15:30:05 +01:00
README.txt Minor fixes for the name change Campcaster -> Airtime. 2011-01-07 17:17:23 -05:00
testing.md Add testing.md to docs 2017-03-04 15:17:26 +01:00

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>