A Middleman site that pulls in its own readme as the index

I am working on a Middleman app that builds out to it’s own gh-pages branch.

Rather that copying over and maintaining the Readme in two places, I would like to configure middleman to grab the repo’s root level (outside of source) README.md file and use that to build the index page.

Is this possible? How would it be done?

Simple solution: Use ln to make a copy of the README-file.

Definitely, We have a few collaborators so an automated solution would be better.

I was actually surprised that there was no config for an output XXX.file as YYY.file

I should have been clearer.

ln (in the terminal) is not making a copy. It makes the same file appear in several places. So if you change it in one place these changes will appear in all other places simultaneously.

Maybe you want to do something like this:

For the demo page of my Middleman template, I included the readme.md via a ruby command.