I'm just learning orchard CMS, and have some questions:

  1. How do I setup development environment for the team? should I use source code of orchard itself (I don't want that) or is there a way to use Orchard in compiled state?
  2. I would prefer each developer to have its own local copy of DB, won't it make troubles for the team when they get sources and need to go in admin mode and manually execute updates on modules?
link|improve this question

Will the team be developing custom modules? – Richard Oct 13 '11 at 16:20
90% sure that yes, we will need them – Sly Oct 14 '11 at 6:51
feedback

1 Answer

up vote 2 down vote accepted
  1. For development you should definitely set up full source enlistment. Using the compiled, deployment package (as can be downloaded from Codeplex or via WebMatrix) will drive you in lots of problems.
  2. Orchard can run on either "normal" SQL Server or SQL Server Compact (single-file) databases.

What do you mean by a "local copy of the DB"? Each developer can test his instance using local SQL Server CE database - it's how I usually do that when working on custom modules.

If you have some preconfigured database you'd want your developers to use (because eg. it contains some sample data, themes setup and such) - each developer can copy the database from the server to his own, local SQL Server CE-based database. Migration can be easily done from Visual Studio, SSMS or WebMatrix.

link|improve this answer
3  
You can also maintain a recipe file under source control so that your devs can rehydrate a site quickly if they need to restart from scratch. – Bertrand Le Roy Oct 13 '11 at 21:13
@Bertrand: Agreed - it's also a very good approach. – Piotr Szmyd Oct 13 '11 at 22:33
@Piotr, could you please tell us more about downsides or that "lots of problems" of not using full source for development? Is there any discussion or blog about this issue? I have to make this decision (and full source surely have some downsides). – rouen May 3 at 14:05
feedback

Your Answer

 
or
required, but never shown

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