A developer and designer friendly web platform for building gorgeous sites, blogs and portfolios.
Go to file
Dorian 33b29885f9 Merged in experimental-multi-site (pull request #29)
Experimental multi site

Approved-by: Dorian Pula <dorian.pula@amber-penguin-software.ca>
2017-10-05 04:59:33 +00:00
.circleci Add architecture specific cache to rookeries builds. 2017-09-29 17:24:47 -04:00
docs Add more notes for dev work in JS. 2017-09-25 12:59:56 -04:00
rookeries Fix reading of demo pages. 2017-10-02 13:23:53 -04:00
scripts Add tagged releases, and remove old script for tags. 2017-03-27 17:38:28 -04:00
src Remove unused code and libraries. 2017-10-04 20:50:19 -04:00
static Migrate footer to use Markdown blocks. 2017-09-29 09:27:56 -04:00
tasks Migrate footer to use Markdown blocks. 2017-09-29 09:27:56 -04:00
templates Migrate views to use bootstrap 4 and reactstrap. 2017-09-22 00:08:03 -04:00
tests Fix JS tests. 2017-09-29 10:57:01 -04:00
.babelrc Migrate views to use bootstrap 4 and reactstrap. 2017-09-22 00:08:03 -04:00
.docker-repository.yml Update CI scripts to work against a single image. 2017-03-14 21:14:21 -04:00
.dockerignore Improve testing setup for UI. 2017-04-10 08:15:01 -04:00
.eslintrc.json Improve JS code consistency. 2017-09-25 13:12:10 -04:00
.gitignore Migrate webapp to top level part of project. 2017-03-14 16:02:42 -04:00
Dockerfile Migrate to use standalone prop types. 2017-09-18 08:46:05 -04:00
Makefile Fix Makefile test issue. 2017-09-16 08:31:46 -04:00
Pipfile Migrate views to use bootstrap 4 and reactstrap. 2017-09-22 00:08:03 -04:00
Pipfile.lock Migrate views to use bootstrap 4 and reactstrap. 2017-09-22 00:08:03 -04:00
docker-compose.yml Update configuration and hopefully fix the issues with CircleCI builds. 2017-09-15 15:37:25 -04:00
package.json Remove unused code and libraries. 2017-10-04 20:50:19 -04:00
readme.md Update documentation and readme. 2017-09-24 14:16:17 -04:00
requirements.txt Remove coverage reports from tests. 2017-04-06 08:14:00 -04:00
webpack.config.js Improve webpack configuration. 2017-09-25 13:38:09 -04:00
yarn.lock Remove unused code and libraries. 2017-10-04 20:50:19 -04:00

readme.md

Rookeries

A developer and designer friendly web platform for building gorgeous sites, blogs and portfolios.

Rookeries is:

  • Powered by Flask, Python and PostgreSQL on the server side.
  • Uses preact, redux, ES2017 and webpack to build responsive single page apps.
  • Licensed under the Affero GNU General Public License (AGPL) version 3.0.

Build Status:

  • CircleCI: CircleCI
  • Docker:

Installation

Rookeries is heavily under development and once things stabilize there will be a user friendly installation guide. In the meantime, please refer to the development guide below.

Development

Rookeries uses the following technologies:

  • Python 3.6
  • NodeJS 8 + ES2017
  • PostgreSQL 9.6
  • Docker + docker-compose

Getting Started

Rookeries requires newer versions of Docker (<1.9.0) and docker-compose (<1.8.0).

  1. Install docker-compose
  2. Build Rookeries: make build
  3. Run tests: make test
    • make test-api to run API server tests.
    • make test-ui to run UI tests.
  4. Run demo: make demo
  5. Run the invoke scripts on a running Rookeries container with: docker-compose exec rookeries inv $MY_TASK
    • Use inv -l to list the available invoke tasks.
  6. When running the demo, navigate to the main Rookeries page in a browser: http://localhost:5000/

Tips and Tricks