Skip to content

Commit 742f4c1

Browse files
committed
Massive changes :
- backend : friends of friends and search routes - cytoscape-backend : new submodule "cache" - frontend : start menus, loading, search - tmdb-collector : some minor update - tmdb-to-neo4j : minor changes due to new crawler
1 parent d237c81 commit 742f4c1

File tree

9 files changed

+21
-7
lines changed

9 files changed

+21
-7
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
[submodule "tmdb-to-neo4j"]
1111
path = tmdb-to-neo4j
1212
url = https://github.com/stevenliatti/tmdb-to-neo4j.git
13+
[submodule "cytoscape-backend"]
14+
path = cytoscape-backend
15+
url = https://github.com/stevenliatti/hnv-cytoscape-backend.git

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Hollywood Network Analyzer
1+
# Hollywood Network Visualizer
22

33
Graph visualization of TMDb data, backed by Neo4j database.

cytoscape-backend

Submodule cytoscape-backend added at 8c16272

docker-compose.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,21 @@ services:
2828
environment:
2929
- API_URL=/api/apidoc.yaml
3030

31+
cytoscape-backend:
32+
build: cytoscape-backend
33+
environment:
34+
- NODE_ENV=production
35+
env_file: .env
36+
ports:
37+
- "3000:3000"
38+
depends_on:
39+
- backend
40+
3141
frontend:
3242
build: .
3343
volumes:
3444
- ./frontend/web:/usr/share/nginx/html
3545
ports:
3646
- "80:80"
3747
depends_on:
38-
- backend
48+
- cytoscape-backend

nginx-default.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ server {
99
}
1010

1111
location /api/ {
12-
proxy_pass http://backend:8080/;
12+
proxy_pass http://cytoscape-backend:3000/;
1313
}
1414

1515
location /apidoc/ {

0 commit comments

Comments
 (0)