Skip to content

Commit

Permalink
Update main README links
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-potter committed Sep 28, 2016
1 parent ac0be80 commit 4af1677
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 7 deletions.
8 changes: 8 additions & 0 deletions Dockerfile
@@ -0,0 +1,8 @@
FROM python:3.4

RUN pip install mkdocs

RUN mkdir /documents
WORKDIR /documents

CMD mkdocs build --clean --site-dir /site
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -18,17 +18,17 @@ automation of a number of PHP & Drupal tasks. Here are a few examples of what it
provides:

* Configurable code structure that defaults to a clean development practice.
* Composer [build workflow](https://phase2.github.io/grunt-drupal-tasks/build)
* Composer [build workflow](docs/10_BUILD.md)
(or Drush make-based build workflow for Drupal 7.x).
* Optional use [Code Quality & Static Analysis](https://phase2.github.io/grunt-drupal-tasks/quality),
and [Frontend tooling](https://phase2.github.io/grunt-drupal-tasks/frontend)
* Optional use [Code Quality & Static Analysis](docs/20_QUALITY.md),
and [Frontend tooling](docs/30_FRONTEND.md)
to extend the build process.
* [Behat and SimpleTest Testing](https://phase2.github.io/grunt-drupal-tasks/testing)
* [Deployment packaging](https://phase2.github.io/grunt-drupal-tasks/package)
* [Git Hook management](https://phase2.github.io/grunt-drupal-tasks/git-hooks)
* [Behat and SimpleTest Testing](docs/40_TESTING.md)
* [Deployment packaging](docs/60_PACKAGE.md)
* [Git Hook management](docs/70_GIT_INTEGRATION.md)
* Desktop Notifications
* Local Development Friendly
* [CI](https://phase2.github.io/grunt-drupal-tasks/ci) Friendly
* [CI](docs/80_CI.md) Friendly

We are continuously working to improve this toolchain, adding functionality that
we see as common to our _continuous integration_ and everyday development
Expand Down
5 changes: 5 additions & 0 deletions build_docs.sh
@@ -0,0 +1,5 @@
#!/bin/bash
# Script to build mkdocs site if mkdocs is installed locally
#
cd docs
mkdocs build --clean --site-dir ../../phase2.github.io/grunt-drupal-tasks

0 comments on commit 4af1677

Please sign in to comment.