I'm looking for a CMS for use with Appharbor, the issue I've seen with other CMS's is that they store content in the file system which may get deleted between deployments and does not work across multiple nodes (so maybe everything would be stored in the database).

Does anyone have an experience setting up a CMS on Appharbor?

Currently I'm using Umbraco a bit so it anyone has been able to set that up those details would also be helpful.

Other cms's that might work would be Orchard or Composite C1.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Here are some guides that might help you out:

  1. Umbraco 5 Alpha on AppHarbor (if you want to stick with Umbraco)
  2. Running Composite C1 on Azure (switch out blob storage for AWS S3 which will work better on AppHarbor)
  3. Our guide on Orchard on AppHarbor (the same principles and workflows will apply to Composite C1).
link|improve this answer
Thank's but the umbraco example is flawed, it tries to use the file system. – Lavinski Feb 20 at 23:21
feedback

Composite C1 abstracts all its access to files through its own C1FileSystem, meaning that it can run fine on systems that requires files to be stored in ie. blobstorage or database.

AFAIK there has only been written two implementations though, one for normal filesystem and one for Azure. But it should be easy to see how the Azure implementation is made and do a similar for AppHarbor.

Look at the Composite.Plugins.IO.IOProviders.LocalIOProvider.LocalIOProvider interface to get a feeling of the kind of job that needs to be done to run on AppHarbor. Its not that bad really.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.