Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit 9da3287

Browse files
author
Andy Perlitch
committed
updated README with better info
1 parent fbcb036 commit 9da3287

File tree

1 file changed

+52
-25
lines changed

1 file changed

+52
-25
lines changed

README.md

+52-25
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,47 @@
11
Apache Apex Incubator Website
22
=============================
33

4-
This is the source code for the Apache Apex Incubator website, hosted at [apex.incubator.apache.org](http://apex.incubator.apache.org/).
4+
This is the source code for the Apache Apex Incubator website, hosted at [apex.incubator.apache.org](http://apex.incubator.apache.org/). The following tools are used to build the html pages:
5+
6+
- [nodejs + npm](https://nodejs.org/en/)
7+
- [gulp - nodejs automation tool](http://gulpjs.com/)
8+
- [handlebars.js - templating](http://handlebarsjs.com/)
9+
- [LESS - css pre-processor](http://lesscss.org/)
10+
- [Marked - Markdown parser/compiler](https://github.com/chjj/marked)
11+
- [Bootstrap - HTML/CSS/JS framework](http://getbootstrap.com/)
12+
- [jQuery](https://jquery.com/)
513

614

715
How it works
816
------------
9-
The master branch of this repo contains the files that are used to generate the HTML that ultimately gets pushed to the incubator site.
17+
The master branch of this repo contains the source files that are used to generate the HTML that ultimately gets pushed to the incubator site.
1018
The `asf-site` branch is where the actual generated files are stored. Note that this branch must contain exactly one folder called `content`,
11-
and so has been checked out as an orphan branch with its own commit history apart from the master branch. See the *Building* section below.
19+
and so has been checked out as an orphan branch with its own commit history apart from the master branch. See the *Contributing* section below.
1220

1321
Through a [gitpubsub](http://www.apache.org/dev/gitpubsub.html) mechanism on the apache.org server,
1422
files are taken from the `asf-branch` and pushed to the live server.
1523

16-
Partials
17-
--------
18-
All pages on the site share the same header and footer. These are stored in the `src/partials` folder.
19-
2024
Pages
2125
-----
22-
Pages are stored in the `src/pages` folder. Each page should look something like this:
26+
Pages are stored in the `src/pages` folder. Each page uses the [handlebars templating engine](http://handlebarsjs.com/), and should look something like this:
2327

2428
```HTML
25-
{{> header}}
29+
{{> header}} <!-- includes the header.handlebars partial -->
2630

2731
<h1>Hello World</h1>
2832
<p>I am a page.</p>
2933

30-
{{> footer}}
34+
{{> footer}} <!-- includes the footer.handlebars partial -->
3135
```
3236

33-
## Markdown files
37+
Partials
38+
--------
39+
All pages on the site share the same header and footer. These are stored in the `src/partials` folder. You can put other partials in here and they will be made available to all templates (the `.handlebars` extension is dropped).
3440

35-
If you have a block of content that you would like to render as markdown, you can do so by creating a `.md` file in the `src/md/` folder.
36-
These will be picked up, rendered has html, and passed into your page templates as partials.
41+
Markdown files
42+
--------------
43+
If you have a block of content that you would like to render from a markdown file, you can do so by creating a `.md` file in the `src/md/` folder.
44+
These `.md` files will be picked up, rendered has html, and exposed to page templates as partials.
3745
Assuming you have a file called `src/md/example_markdown.md`, you could have this in a page template:
3846

3947
```HTML
@@ -46,17 +54,36 @@ Assuming you have a file called `src/md/example_markdown.md`, you could have thi
4654
{{> footer}}
4755
```
4856

49-
Building (requires node+npm)
50-
----------------------------
51-
Run `build.sh` from the directory. This will:
52-
53-
- ensure the necessary npm and bower dependencies are installed
54-
- checks out and updates the `asf-site` branch with a new commit of the build from the current branch
55-
56-
You must manually push to the `asf-site` remote branch.
57+
Contributing
58+
------------
59+
If you would like to make a change to the site:
60+
61+
1. Fork the [github mirror](https://github.com/apache/incubator-apex-site)
62+
2. Create a new branch from `master`
63+
3. Add commit(s) to your branch
64+
4. Test your changes locally (see Development section below)
65+
5. Open a pull request on the github mirror
66+
6. A committer will merge your changes if all is good
67+
68+
If you are a committer, do the following:
69+
70+
1. Update the master branch with your (or a Pull Request's) change.
71+
2. Push updated master to the asf remote master (https://git-wip-us.apache.org/repos/asf/incubator-apex-site.git)
72+
2. Run `build.sh` from the master branch directory (requires nodejs and npm). This will:
73+
- ensure the necessary npm and bower dependencies are installed
74+
- checks out and updates the `asf-site` branch with a new commit of the build from the current branch
75+
3. At this point, you should be on the `asf-site` branch. Simply push this branch to the asf remote and the site will automatically be updated within seconds.
76+
77+
Development
78+
-----------
79+
To set up the proper dev environment for this site, run the following:
80+
81+
```bash
82+
npm install
83+
./node_modules/.bin/bower install
84+
./node_modules/.bin/gulp watch
85+
```
5786

58-
Developing
59-
----------
6087

61-
When making changes to src files, you can run `grunt watch`, which will constantly build the project in the `/content` folder,
62-
so you don't have to manually run `grunt` after every change
88+
The `gulp watch` command will start a process that watches for changes to source files and updates the `/content` folder accordingly.
89+
Simply open `/content/index.html` in your browser and refresh the page when you make changes.

0 commit comments

Comments
 (0)