sintonia/docs
Lucas Bickel 7f02761e8d Basic pandocs conversion of Airtime.pro manual
This is what is currently on http://sourcefabric.booktype.pro/airtime-pro-for-broadcasters and was converted to markdown with an extremely hacky script and some flintstoning.
2017-03-05 01:22:11 +01:00
..
_css Remove background-color completely 2017-03-04 15:27:21 +01:00
manual Basic pandocs conversion of Airtime.pro manual 2017-03-05 01:22:11 +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 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>