libretime/docs
Lucas Bickel 188c127057 Merge branch 'master' into feature/analyzer-on-travis
# Conflicts:
#	.travis.yml
2017-03-04 16:35:11 +01:00
..
_css Remove background-color completely 2017-03-04 15:27:21 +01: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 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
testing.md Merge branch 'master' into feature/analyzer-on-travis 2017-03-04 16:35:11 +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>