-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update outdated code and documentation
- Introduce fail-fast in various places to improve error reporting - Add a docker-compose-no-init.yml for running the project in discrete steps - Consolidate README.md - Update URL for RankyMcRankFace.jar
- Loading branch information
Cuong Tham
committed
Oct 7, 2021
1 parent
64c0474
commit b891ae6
Showing
10 changed files
with
59 additions
and
136 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
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
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,23 @@ | ||
# Docker compose file for the application. | ||
|
||
#version: '2' # on CircleCI the version and services cause build to puke. | ||
#services: | ||
|
||
app: | ||
build: . | ||
dockerfile: ./deploy/app/Dockerfile | ||
environment: | ||
- ELASTICSEARCH_URL=http://localhost:9200 | ||
links: | ||
- elasticsearch | ||
ports: | ||
- "8000:80" | ||
|
||
elasticsearch: | ||
build: . | ||
dockerfile: ./deploy/elasticsearch/Dockerfile | ||
environment: | ||
- "ES_JAVA_OPTS=-Xms512m -Xmx512m" | ||
ports: | ||
- "9200:9200" | ||
- "9300:9300" |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
links: | ||
- elasticsearch | ||
ports: | ||
- "80:80" | ||
- "8000:80" | ||
|
||
elasticsearch: | ||
build: . | ||
|
This file was deleted.
Oops, something went wrong.
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
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
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,5 +1,5 @@ | ||
#!/bin/bash | ||
wget https://dl.bintray.com/o19s/RankyMcRankFace/com/o19s/RankyMcRankFace/0.1.1/RankyMcRankFace-0.1.1.jar | ||
#!/bin/bash -e | ||
wget https://github.com/o19s/RankyMcRankFace/releases/download/0.1.0/RankyMcRankFace-0.1.0.jar | ||
wget http://es-learn-to-rank.labs.o19s.com/tmdb.json | ||
wget http://files.grouplens.org/datasets/movielens/ml-20m.zip | ||
unzip ml-20m.zip |
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
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