-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.DS_Store | ||
node_modules/ | ||
DISPLAY/ | ||
tags.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
# photosearch | ||
Building a highly performant photosearch with Elasticsearch, Docker, and AngularJS | ||
|
||
Read more about this project on my [blog](http://blog.sandeepchivukula.com) | ||
|
||
Licensing information in the LICENSE file |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
network.host: 0.0.0.0 | ||
|
||
# This is only for Testing with your localhost | ||
# Get rid of it before shipping to production! | ||
http.cors.enabled : true | ||
http.cors.allow-origin : "*" | ||
http.cors.allow-methods : OPTIONS, HEAD, GET, POST, PUT, DELETE | ||
http.cors.allow-headers : X-Requested-With,X-Auth-Token,Content-Type, Content-Length |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#Building a photosearch with Elastic Search | ||
#Read more at: http://blog.sandeepchivukula.com/ | ||
|
||
elasticsearch-1: | ||
image: elasticsearch | ||
container_name: elasticsearch-1 | ||
ports: | ||
- "9200:9200" | ||
- "9300:9300" | ||
volumes: | ||
- ./data/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml | ||
command: elasticsearch | ||
|
||
kibana-frontend: | ||
image: kibana:latest | ||
container_name: kibana-frontend | ||
ports: | ||
- "5601:5601" | ||
links: | ||
- elasticsearch-1:elasticsearch |