You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2017/07/06 06:44:25 UTC

[2/7] camel git commit: Revert "CAMEL-11492 New Camel website - added README.md"

Revert "CAMEL-11492 New Camel website - added README.md"

This reverts commit 2a1ca7305506c3097b2b2356b691270a6e9eb961.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/34614ca2
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/34614ca2
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/34614ca2

Branch: refs/heads/master
Commit: 34614ca2d1bc71c87852043faed3ce1d61266fa4
Parents: 3805d21
Author: Andrea Cosentino <an...@gmail.com>
Authored: Thu Jul 6 08:43:34 2017 +0200
Committer: Andrea Cosentino <an...@gmail.com>
Committed: Thu Jul 6 08:43:34 2017 +0200

----------------------------------------------------------------------
 camel-website/README.md | 40 ----------------------------------------
 1 file changed, 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/34614ca2/camel-website/README.md
----------------------------------------------------------------------
diff --git a/camel-website/README.md b/camel-website/README.md
deleted file mode 100644
index 8434e32..0000000
--- a/camel-website/README.md
+++ /dev/null
@@ -1,40 +0,0 @@
-# Camel Website
-
-This is a site generator project for Apache Camel. It generates static HTML and
-resources that are to be published. Tools used to generate the website:
- - [Gulp](http://gulpjs.com/) a task automation tool. It is used to gather
-   documentation files from the Camel source tree and filter and copy them into
-   the `content` folder.
- - [Hugo](https://gohugo.io) a static site generator. Simplified, it takes the
-   documentation from the `content` folder and applies templates from `layouts`
-   folder and together with any resources in `static` folder generates output in
-   the `public` folder.
- - [Yarn](https://yarnpkg.io) - JavaScript dependency management and script
-   runner. Used to bring in all tooling (Gulp, Hugo, Webpack, ...) and other
-   dependencies (Skeleton CSS framework for example) and run `build` and `watch`
-   scripts.
- - [Webpack](https://webpack.js.org/) - JavaScript and CSS module bundler, it
-   generates JavaScript in `static/js` and CSS in `static/css` bundles from
-   `src/scripts` and `src/stylesheets` respectively.
-
-## Building the website
-
-To build the website run:
-
-    $ yarn // needed only once, or if dependencies change
-    $ yarn build // to perform the build
-
-This should generate the website in the `public` folder.
-
-## Working on the website
-
-When working on the website it is nice to see the effects of the change
-immediately, to that end you can run:
-
-    $ yarn // needed only once, or if dependencies change
-    $ yarn build // to perform the build
-    $ yarn serve // serve the website on http://localhost:1313 and react on \
-                    changed files
-
-If a file is changed tools react on that change and a script present in the
-website performs a reload (livereload).