Skip to content

Commit 7076bf3

Browse files
committed
Merge branch 'master' into develop
# Conflicts: # dev/restart.sh # doc/_includes/footer.html
2 parents 2b72181 + eff4cb0 commit 7076bf3

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This extension replaces the default search of Magento with a typo-tolerant, fast
77

88
See features and benefits of [Algolia Search Extension for Magento](https://community.algolia.com/magento).
99

10-
![Latest version](https://img.shields.io/badge/latest-1.5.4-green.svg)
10+
![Latest version](https://img.shields.io/badge/latest-1.6.0-green.svg)
1111
![Magento 1.6.2](https://img.shields.io/badge/magento-1.6.2-blue.svg)
1212
![Magento 1.7.1](https://img.shields.io/badge/magento-1.7.1-blue.svg)
1313
![Magento 1.8.1](https://img.shields.io/badge/magento-1.8.1-blue.svg)

dev/restart.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cd `dirname "$0"`
1515

1616
usage() {
1717
echo "Usage:" >&2
18-
echo "$PROG -a APPLICATION_ID -k API_KEY -s SEARCH_ONLY_API_KEY [-p INDEX_PREFIX] [-b BASE_URL] [-o EXPOSED_PORT] [-v MAGENTO_VERSION]" >&2
18+
echo "$PROG -a APPLICATION_ID -k API_KEY -s SEARCH_ONLY_API_KEY [-p INDEX_PREFIX] [-b BASE_URL] [-o EXPOSED_PORT] [-v MAGENTO_VERSION] [--no-algolia] [--release]" >&2
1919
echo "" >&2
2020
echo "Options:" >&2
2121
echo " -a | --application-id The application ID" >&2
@@ -102,6 +102,7 @@ ensure "-a" "$APPLICATION_ID"
102102
ensure "-k" "$API_KEY"
103103
ensure "-s" "$SEARCH_ONLY_API_KEY"
104104
ensure "-b" "$BASE_URL"
105+
ensure "-o" "$EXPOSED_PORT"
105106

106107
case "$MAGENTO_VERSION" in
107108
19)

doc/README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Magento Community Website
2+
==========================
3+
4+
This is the source code of the https://community.algolia.com/magento/ website. It's based on [Jekyll](http://jekyllrb.com/).
5+
6+
# Development
7+
8+
To run the website locally, you can do:
9+
10+
```sh
11+
$ cd doc/
12+
$ bundle install
13+
$ bundle exec guard
14+
$ open http://localhost:4000/magento/
15+
```
16+
17+
# Deployment
18+
19+
We use gh-pages to host the built version of this website. To release it, use the following script:
20+
21+
```sh
22+
$ cd doc/
23+
$ make release
24+
```

0 commit comments

Comments
 (0)