sintonia/docs
Lucas Bickel 8ed1dce4b1 Install airtime in vagrant env
Uses the old installer to get LibreTime installed quick and dirty on vagrant.

It uses the `install -fIap` command that does a local install and points the apache config
directly to the local working copy mounted in /vagrant.

While we don't have fancy autoloading for libretime like the docs do, this way
it's already easy to work against a local branch.

I'm not sure if the `-I` arg to the installer also covers the python parts of libretime.
2017-03-06 12:05:22 +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 Install airtime in vagrant env 2017-03-06 12:05:22 +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>