Web page of the Dahu application.
The Dahu web page is static and is generated by combining the powerful Jinja2 template engine with Fabric automation tool.
For generating this web page you need the following installed on your computer:
- bower (see http://bower.io/)
- scss (see http://sass-lang.com/)
- pip (see http://www.pip-installer.org/)
The building process requires some python dependencies that can be obtained by running:
> pip install -r requirements.txt
For the web page to be nicely designed we have to respect few conventions.
Image size must respect the golden ratio. A common size of image is: 800 x 500.
Please respect this ratio.
To be generated and served the Dahu web page requires some dependencies. Those dependencies can be downloaded or updated using the following commands:
> fab bower:install
> fab bower:update
For generating the web site you need to run
> fab generate
For publishing the web site you need to run
> fab publish
info currently the publication is performed on the devel-gh-pages branch.
For watching the generated web site locally just run
> fab serve
For cleaning the project just run
> fab clean